aboutsummaryrefslogtreecommitdiffhomepage
path: root/app
diff options
context:
space:
mode:
authorAline <chetta.aline@gmail.com>2017-05-07 15:07:50 +0200
committerAline <chetta.aline@gmail.com>2017-05-07 15:07:50 +0200
commit34806fab1b26eb626862d45402cb4e265cc0af5b (patch)
tree4ea856bf3d101e0ec908f6d355924c411fde3cf3 /app
parent14f58edd803d0656f3471c1bf1a75ec5cc483da8 (diff)
downloadwallabag-34806fab1b26eb626862d45402cb4e265cc0af5b.tar.gz
wallabag-34806fab1b26eb626862d45402cb4e265cc0af5b.tar.zst
wallabag-34806fab1b26eb626862d45402cb4e265cc0af5b.zip
Fix reviews
Signed-off-by: Aline <chetta.aline@gmail.com>
Diffstat (limited to 'app')
-rw-r--r--app/Resources/static/themes/material/css/cards.scss8
-rw-r--r--app/Resources/static/themes/material/css/icons.scss4
-rw-r--r--app/Resources/static/themes/material/css/sidenav.scss4
-rw-r--r--app/Resources/static/themes/material/css/various.scss8
4 files changed, 24 insertions, 0 deletions
diff --git a/app/Resources/static/themes/material/css/cards.scss b/app/Resources/static/themes/material/css/cards.scss
index 2fa6535a..d0f4c828 100644
--- a/app/Resources/static/themes/material/css/cards.scss
+++ b/app/Resources/static/themes/material/css/cards.scss
@@ -27,6 +27,10 @@ main {
27 color: #313131; 27 color: #313131;
28 } 28 }
29 29
30 .card-content .card-title {
31 display: inline-block;
32 }
33
30 .card-content .activator, 34 .card-content .activator,
31 .card-reveal .activator { 35 .card-reveal .activator {
32 cursor: pointer; 36 cursor: pointer;
@@ -111,6 +115,10 @@ main {
111 .reading-time { 115 .reading-time {
112 display: inline-flex; 116 display: inline-flex;
113 vertical-align: middle; 117 vertical-align: middle;
118
119 span {
120 margin-right: 5px;
121 }
114 } 122 }
115 } 123 }
116 124
diff --git a/app/Resources/static/themes/material/css/icons.scss b/app/Resources/static/themes/material/css/icons.scss
index 1eeab902..e7f215c0 100644
--- a/app/Resources/static/themes/material/css/icons.scss
+++ b/app/Resources/static/themes/material/css/icons.scss
@@ -138,6 +138,10 @@ a.icon-image {
138 &.shaarli::before { 138 &.shaarli::before {
139 background: url("../../_global/img/icons/shaarli.png") no-repeat center/80%; 139 background: url("../../_global/img/icons/shaarli.png") no-repeat center/80%;
140 } 140 }
141
142 &.scuttle::before {
143 background: url("../../_global/img/icons/scuttle.png") no-repeat center/80%;
144 }
141} 145}
142 146
143.icon-google-plus2::before { 147.icon-google-plus2::before {
diff --git a/app/Resources/static/themes/material/css/sidenav.scss b/app/Resources/static/themes/material/css/sidenav.scss
index 2d49a935..416dc1c7 100644
--- a/app/Resources/static/themes/material/css/sidenav.scss
+++ b/app/Resources/static/themes/material/css/sidenav.scss
@@ -7,6 +7,10 @@
7 7
8 li { 8 li {
9 padding: 0; 9 padding: 0;
10
11 &.logo > a:hover {
12 background: initial;
13 }
10 } 14 }
11 15
12 a { 16 a {
diff --git a/app/Resources/static/themes/material/css/various.scss b/app/Resources/static/themes/material/css/various.scss
index 6a6f52f9..7daf40ec 100644
--- a/app/Resources/static/themes/material/css/various.scss
+++ b/app/Resources/static/themes/material/css/various.scss
@@ -22,3 +22,11 @@ div.settings div.file-field {
22nav .input-field input { 22nav .input-field input {
23 margin: 0; 23 margin: 0;
24} 24}
25
26.tabs {
27 display: flex;
28}
29
30.tab {
31 flex: 1;
32}