diff --git a/css/shaarli.css b/css/shaarli.css index 43faf63..3516fb9 100644 --- a/css/shaarli.css +++ b/css/shaarli.css @@ -4276,8 +4276,7 @@ pre { .linklist-item { position: relative; - margin: 0 0 10px; - box-shadow: 1px 1px 3px #797979; } + margin: 0 0 16px; } .linklist-item.private .linklist-item-title h2, .linklist-item.private .linklist-item-title h2 a { color: #d28314; } .linklist-item.private .linklist-item-title h2 a:hover { @@ -4312,7 +4311,6 @@ pre { word-wrap: break-word; font-size: 24px; font-weight: 700; - line-height: 29px; max-width: 80%; } .linklist-item-title h2 a { vertical-align: middle; @@ -4325,8 +4323,9 @@ pre { left: 16px; } .linklist-item-title h2 a:hover { color: var(--dark-main-color); } - .linklist-item-title .label-private { - background-color: #d28314; } + +.label-private { + background-color: #d28314; } .fold-button { display: none; @@ -4412,14 +4411,16 @@ pre { padding: 0 0 0 5px; height: 90px; } -.linklist-item-infos a { - text-decoration: none; - color: #252525; } - .linklist-item-infos a:hover { - color: #000; } - -.linklist-item-infos .mobile-buttons { - text-align: right; } +.linklist-item-infos { + position: relative; + top: -6px; } + .linklist-item-infos a { + text-decoration: none; + color: #252525; } + .linklist-item-infos a:hover { + color: #000; } + .linklist-item-infos .mobile-buttons { + text-align: right; } .linklist-item-infos-dateblock { font-size: .9em; } diff --git a/linklist.html b/linklist.html index 7a5658c..f6b121d 100644 --- a/linklist.html +++ b/linklist.html @@ -88,162 +88,151 @@ {loop="links"}
- - -
- {if="isset($value.link_plugin)"} - {$link_plugin_counter=count($value.link_plugin)} - {loop="$value.link_plugin"} - {$value} - {if="$link_plugin_counter - 1 != $counter"}·{/if} - {/loop} - {/if} - {if="$is_logged_in"} - · - - - - · - - {/if} -
- - {/loop} - - +{/loop} + + - + {include="page.footer"} diff --git a/sass/shaarli.scss b/sass/shaarli.scss index 08d6449..d4b783a 100644 --- a/sass/shaarli.scss +++ b/sass/shaarli.scss @@ -713,7 +713,6 @@ pre { word-wrap: break-word; font-size: 24px; font-weight: 700; - line-height: 29px; max-width: 80%; a { @@ -736,14 +735,14 @@ pre { .label { } - .label-private { - background-color: $orange; - } - .label-sticky { } } +.label-private { + background-color: $orange; +} + .fold-button { display: none; color: $dark-gray; @@ -783,13 +782,14 @@ pre { } .pinned-link { - color: $blue !important; + color: $blue !important; } .linklist-item-description { position: relative; color: $dark-gray; word-wrap: break-word; + margin-bottom: 12px; max-width: 800px; a { @@ -855,6 +855,8 @@ pre { } .linklist-item-infos { + position: relative; + top: -6px; a { text-decoration: none;