aboutsummaryrefslogtreecommitdiffhomepage
path: root/app
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2017-05-29 10:59:30 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2017-05-31 13:26:29 +0200
commit812c980fa5ea03b9282e32a93723e459eee763a3 (patch)
tree3c9f39794d576a21dc966f390323549c9f367427 /app
parent21242a02a170208bcdd3ffbdb351f0929f708c5a (diff)
downloadwallabag-812c980fa5ea03b9282e32a93723e459eee763a3.tar.gz
wallabag-812c980fa5ea03b9282e32a93723e459eee763a3.tar.zst
wallabag-812c980fa5ea03b9282e32a93723e459eee763a3.zip
Fixed tags display on grid view
Diffstat (limited to 'app')
-rw-r--r--app/Resources/static/themes/material/css/cards.scss17
-rw-r--r--app/Resources/static/themes/material/css/entries.scss9
-rw-r--r--app/Resources/static/themes/material/css/various.scss20
3 files changed, 46 insertions, 0 deletions
diff --git a/app/Resources/static/themes/material/css/cards.scss b/app/Resources/static/themes/material/css/cards.scss
index f5b79193..1e0155c3 100644
--- a/app/Resources/static/themes/material/css/cards.scss
+++ b/app/Resources/static/themes/material/css/cards.scss
@@ -182,6 +182,23 @@ a.original:not(.waves-effect) {
182 ul.tools-list { 182 ul.tools-list {
183 display: none; 183 display: none;
184 } 184 }
185
186 .preview {
187 float: left;
188 width: 90px;
189 height: 50px;
190
191 img {
192 max-height: 50px;
193 padding-right: 10px;
194 width: 80px;
195 }
196 }
197
198 .domain,
199 .footer {
200 font-size: 12px;
201 }
185} 202}
186 203
187.quickstart .card .card-action a, 204.quickstart .card .card-action a,
diff --git a/app/Resources/static/themes/material/css/entries.scss b/app/Resources/static/themes/material/css/entries.scss
index b6a46a9e..c667be27 100644
--- a/app/Resources/static/themes/material/css/entries.scss
+++ b/app/Resources/static/themes/material/css/entries.scss
@@ -2,6 +2,15 @@
2 * Entries 2 * Entries
3 * ========================================================================== */ 3 * ========================================================================== */
4 4
5.collection {
6 margin: 15px 15px 0;
7
8 .collection-item {
9 padding: 7px;
10 height: 65px;
11 }
12}
13
5.results { 14.results {
6 height: 1em; 15 height: 1em;
7 16
diff --git a/app/Resources/static/themes/material/css/various.scss b/app/Resources/static/themes/material/css/various.scss
index 7daf40ec..512ed8cd 100644
--- a/app/Resources/static/themes/material/css/various.scss
+++ b/app/Resources/static/themes/material/css/various.scss
@@ -30,3 +30,23 @@ nav .input-field input {
30.tab { 30.tab {
31 flex: 1; 31 flex: 1;
32} 32}
33
34.chip {
35 margin: auto 0;
36 border-radius: 4px;
37 background-color: #eee;
38 font-weight: normal;
39 height: 20px;
40 line-height: normal;
41
42 a {
43 color: #9e9e9e;
44 }
45
46 i.material-icons {
47 float: right;
48 font-size: 16px;
49 line-height: 32px;
50 padding-left: 8px;
51 }
52}