]> git.immae.eu Git - github/wallabag/wallabag.git/blame - app/Resources/static/themes/material/css/cards.scss
material: add metadata to list view
[github/wallabag/wallabag.git] / app / Resources / static / themes / material / css / cards.scss
CommitLineData
64f81bc3
TC
1/* ==========================================================================
2 Cards
3 ========================================================================== */
4
5main {
6 #content {
7 padding: 0 0.5rem;
8 }
9
10 ul.row {
f836b98f 11 margin: 0.4rem 0 0;
64f81bc3
TC
12 padding: 0 0.75rem;
13 }
14}
15
16.data .card .card-body {
17 height: 19em;
18 overflow: hidden;
19}
20
4b5b2286
KD
21@mixin mixin-reading-time {
22 .reading-time {
23 display: inline-flex;
24 vertical-align: middle;
25
26 .card-reading-time,
27 .card-created-at {
28 display: inline-flex;
29 }
30
31 span {
32 margin-right: 5px;
33 }
34
35 @content;
36 }
37}
38
64f81bc3
TC
39.card {
40 .card-content .card-title,
41 .card-reveal .card-title {
42 line-height: 22.8px;
43 max-height: 80px;
44 font-size: 19px;
45 font-family: roberto, "Helvetica Neue", Helvetica, Arial, sans-serif;
64f81bc3
TC
46 }
47
ff5cdbdc 48 .card-stacked .card-content .card-title {
34806fab
A
49 display: inline-block;
50 }
51
64f81bc3
TC
52 .card-content .activator,
53 .card-reveal .activator {
54 cursor: pointer;
55 font-family: "Material Icons";
56 }
57
58 .card-content i.right,
59 .card-reveal i.right {
60 margin-left: 0;
61 }
62
63 .card-content .original {
64 line-height: 24px;
65 font-size: 15px;
66 }
67
68 .card-entry-labels {
69 position: absolute;
70 top: 10px;
71 z-index: 90;
72 max-width: 50%;
73 }
74
75 .card-entry-labels-hidden {
76 margin: 2.5px auto;
77 }
78
79 .card-entry-labels-hidden li {
80 display: inline-block;
81 background-color: $blueAccentColor;
82 margin: 0 5px;
83 padding: 5px 12px;
84 border-radius: 3px;
85 color: #fff;
86 max-height: 2em;
87 max-width: calc(100% - 15px);
64f81bc3
TC
88 overflow: hidden;
89 text-overflow: ellipsis;
90 white-space: nowrap;
91 }
92
93 .card-content .estimatedTime {
94 margin-bottom: 10px;
95 }
96
97 .card-action {
98 padding: 10px 5px 10px 15px;
99
100 ul.links {
101 margin: 0;
102 font-size: 24px;
103 line-height: 24px;
104 }
105
106 a {
107 color: #fff;
108 margin: 0;
109 }
110
111 a:hover {
112 color: #fff;
113 }
114
115 ul.tools li a.tool {
116 margin-right: 5px !important;
117 }
118
4b5b2286 119 @include mixin-reading-time;
64f81bc3
TC
120 }
121
64f81bc3
TC
122 .card-image {
123 height: 10em;
124 }
125
126 .card-fullimage {
127 height: 13.5em;
128 }
129
64f81bc3
TC
130 &.sw {
131 max-width: 370px;
132 margin-left: auto;
133 margin-right: auto;
134 }
135}
136
4c6ee89c 137a.original:not(.waves-effect) {
64f81bc3
TC
138 text-overflow: ellipsis;
139 white-space: nowrap;
140 overflow: hidden;
141 display: block;
142}
143
e5de9917
KD
144.card .card-image .preview,
145.card .card-fullimage .preview,
146.card-stacked .preview {
147 height: 100%;
148 background: no-repeat 50%/cover;
149 background-color: #efefef;
150 display: block;
151
152 &--default {
153 background-size: contain;
154 }
155}
156
2003ffa9
TC
157.card-entry-labels li,
158.card-tag-labels li {
159 margin: 10px 10px 10px auto;
160 padding: 5px 12px 5px 16px !important;
161 background-color: $blueAccentColor;
7475924e 162 border-radius: 3px;
2003ffa9
TC
163 color: #fff;
164 cursor: default;
3e7d86b2
S
165}
166
167.card-entry-labels li {
2003ffa9
TC
168 text-overflow: ellipsis;
169 white-space: nowrap;
7475924e 170 border-radius: 0 3px 3px 0;
3e7d86b2
S
171 overflow: hidden;
172}
173
174.card-tag-labels li {
175 display: flex;
176 justify-content: space-between;
2003ffa9
TC
177}
178
64f81bc3
TC
179.card-entry-tags a,
180.card-entry-labels a,
181.card-tag-labels a,
182.card-entry-labels-hidden a,
183#list .chip a {
184 text-decoration: none;
185 font-weight: normal;
186 color: #fff;
187}
188
3e7d86b2
S
189.card-tag-labels a {
190 height: 100%;
191 align-items: center;
192}
193
194.card-tag-link {
195 display: flex;
196 min-width: 100px;
197 flex-grow: 1;
198}
199
200.card-tag-rss {
201 display: flex;
202}
203
204.card-tag-labels {
205 display: flex;
206 flex-wrap: wrap;
207}
208
209.card-tag-labels li {
210 margin: 10px;
211 flex-basis: 19%;
212 flex-grow: 1;
213 align-items: center;
214}
215
64f81bc3 216.card-stacked {
91775f36
TC
217 display: flex;
218 flex-flow: row wrap;
64f81bc3 219
91775f36
TC
220 &:hover ul.tools-list {
221 display: inline;
222 text-align: right;
64f81bc3 223 }
812c980f 224
e5de9917 225 .card-preview {
91775f36 226 max-width: 100px;
e5de9917 227 max-height: 50px;
91775f36
TC
228 margin-right: 10px;
229 flex: 1;
91775f36
TC
230 }
231
232 div.metadata {
4b5b2286
KD
233 overflow: hidden;
234 height: 1.5em;
235 display: flex;
236
237 ul.tags {
238 margin-left: 4px;
239 }
240
91775f36
TC
241 .chip {
242 background-color: $blueAccentColor;
13d94929 243 padding: 0 7px;
4b5b2286 244 margin: auto 1px;
84b041e8 245 border-radius: 6px;
13d94929
KD
246 line-height: 22px;
247 height: 22px;
91775f36
TC
248
249 a,
250 i {
251 color: #fff;
252 }
253
254 i.material-icons {
255 float: right;
256 font-size: 20px;
257 line-height: 32px;
258 padding-left: 8px;
259 }
812c980f 260 }
4b5b2286
KD
261
262 @include mixin-reading-time {
263 padding: 0 5px;
264 flex-wrap: wrap;
265 margin-left: auto;
266
267 i.material-icons {
268 font-size: 20px;
269 }
270 }
812c980f
NL
271 }
272
91775f36
TC
273 div.card-content {
274 flex: 4;
812c980f 275 }
91775f36
TC
276
277 ul.tools-list {
278 flex: 1;
279 display: none;
280 flex-basis: 5em;
281 align-self: flex-end;
282 float: right;
283 max-width: 6em;
284 }
49fb9e7c
S
285
286 .tags {
287 display: inline-block;
288 }
91775f36
TC
289}
290
291#content .collection .collection-item {
292 min-height: 65px;
293 height: auto;
64f81bc3
TC
294}
295
296.quickstart .card .card-action a,
297.quickstart .card .card-action a:hover {
298 color: #fff !important;
299}
300
301.settings .div_tabs {
302 padding-bottom: 15px;
303}