diff options
-rw-r--r-- | tpl/default/css/shaarli.css | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/tpl/default/css/shaarli.css b/tpl/default/css/shaarli.css index d9a48239..78d6d0bf 100644 --- a/tpl/default/css/shaarli.css +++ b/tpl/default/css/shaarli.css | |||
@@ -473,6 +473,10 @@ body { | |||
473 | color: #fff; | 473 | color: #fff; |
474 | } | 474 | } |
475 | 475 | ||
476 | .linklist-item-title .label-private { | ||
477 | border: solid 1px #d0fff0; | ||
478 | } | ||
479 | |||
476 | .linklist-item-editbuttons { | 480 | .linklist-item-editbuttons { |
477 | float: right; | 481 | float: right; |
478 | padding: 5px; | 482 | padding: 5px; |
@@ -496,10 +500,26 @@ body { | |||
496 | } | 500 | } |
497 | 501 | ||
498 | .linklist-item-infos a { | 502 | .linklist-item-infos a { |
499 | color: #000; | 503 | color: #505050; |
500 | text-decoration: none; | 504 | text-decoration: none; |
501 | } | 505 | } |
502 | 506 | ||
503 | .linklist-item-infos a:hover { | 507 | .linklist-item-infos a:hover { |
504 | color: #252525; | 508 | color: #000; |
505 | } | 509 | } |
510 | |||
511 | .linklist-item-infos .label-tag { | ||
512 | border: 1px solid #505050; | ||
513 | font-size: 0.9em; | ||
514 | } | ||
515 | |||
516 | .linklist-item-infos .label-tag:hover { | ||
517 | border: 1px solid #000; | ||
518 | } | ||
519 | |||
520 | .linklist-item-infos-url { | ||
521 | text-align: right; | ||
522 | white-space: nowrap; | ||
523 | overflow: hidden; | ||
524 | text-overflow: ellipsis; | ||
525 | } \ No newline at end of file | ||