aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/Resources/static/themes/material
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2016-06-23 09:06:54 +0200
committerThomas Citharel <tcit@tcit.fr>2016-06-23 22:50:39 +0200
commit25dc07d3c9d88dcb84444d69fd0b4822315c3fac (patch)
treeeb61a08f2820a8b69f566470078a631257bf7dfc /app/Resources/static/themes/material
parent20218495a79a138833ca84dda37334fa42141d28 (diff)
downloadwallabag-25dc07d3c9d88dcb84444d69fd0b4822315c3fac.tar.gz
wallabag-25dc07d3c9d88dcb84444d69fd0b4822315c3fac.tar.zst
wallabag-25dc07d3c9d88dcb84444d69fd0b4822315c3fac.zip
Add tags on entries view
Should be tested on old browsers
Diffstat (limited to 'app/Resources/static/themes/material')
-rwxr-xr-xapp/Resources/static/themes/material/css/main.css38
1 files changed, 38 insertions, 0 deletions
diff --git a/app/Resources/static/themes/material/css/main.css b/app/Resources/static/themes/material/css/main.css
index 473b0308..e70bb2b1 100755
--- a/app/Resources/static/themes/material/css/main.css
+++ b/app/Resources/static/themes/material/css/main.css
@@ -342,6 +342,44 @@ main ul.row {
342 line-height: 32px; 342 line-height: 32px;
343} 343}
344 344
345.card .card-entry-labels {
346 position: absolute;
347 top:10px;
348 z-index: 90;
349 max-width: 50%;
350}
351
352.card .card-entry-labels li {
353 margin: 10px 10px 10px auto;
354 padding: 5px 12px 5px 16px;
355 background-color: rgba(0,151,167,0.85);
356 border-radius: 0 3px 3px 0;
357 color: #fff;
358 cursor: default;
359 max-height: 2em;
360 overflow: hidden;
361 text-overflow: ellipsis;
362 white-space: nowrap;
363}
364
365.card .card-entry-labels-hidden {
366 margin-top: 5px;
367}
368
369.card .card-entry-labels-hidden li {
370 display: inline-block;
371 background-color: rgba(0,151,167,0.85);
372 margin: 0 5px;
373 padding: 5px 12px;
374 border-radius: 3px;
375 color: #fff;
376 max-height: 2em;
377 max-width: calc(100% - 15px);
378 overflow: hidden;
379 text-overflow: ellipsis;
380 white-space: nowrap;
381}
382
345.card .card-content .estimatedTime { 383.card .card-content .estimatedTime {
346 margin-bottom: 10px; 384 margin-bottom: 10px;
347} 385}