aboutsummaryrefslogtreecommitdiffhomepage
path: root/assets
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2018-07-17 13:13:26 +0200
committerArthurHoaro <arthur@hoa.ro>2018-07-17 13:16:50 +0200
commit7b4fea0e39be9e74e9aef13e73af9bbd2b1a6397 (patch)
treea9c5071ed1f6830adcbf10668a2f21e044276842 /assets
parentb302b3c584b84f22f0e6f187b072180ecbacdfab (diff)
downloadShaarli-7b4fea0e39be9e74e9aef13e73af9bbd2b1a6397.tar.gz
Shaarli-7b4fea0e39be9e74e9aef13e73af9bbd2b1a6397.tar.zst
Shaarli-7b4fea0e39be9e74e9aef13e73af9bbd2b1a6397.zip
Bunch of improvement for thumbnails integration:
- add a default thumb size value (125x90px) - improve private vertical bar visual, especially with thumbnails - translations - add a sync thumbs button in tool and empty picwall page - fixes WT download mode in JSON config
Diffstat (limited to 'assets')
-rw-r--r--assets/default/scss/shaarli.scss23
1 files changed, 11 insertions, 12 deletions
diff --git a/assets/default/scss/shaarli.scss b/assets/default/scss/shaarli.scss
index 6a8a8bc7..6b286f1e 100644
--- a/assets/default/scss/shaarli.scss
+++ b/assets/default/scss/shaarli.scss
@@ -636,23 +636,22 @@ body,
636} 636}
637 637
638.linklist-item { 638.linklist-item {
639 position: relative;
639 margin: 0 0 10px; 640 margin: 0 0 10px;
640 box-shadow: 1px 1px 3px $light-grey; 641 box-shadow: 1px 1px 3px $light-grey;
641 background: $almost-white; 642 background: $almost-white;
642 643
643 &.private { 644 &.private {
644 .linklist-item-title { 645 &::before {
645 &::before { 646 display: block;
646 @extend %private-border; 647 position: absolute;
647 margin-top: 3px; 648 top: 0;
648 } 649 left: 0;
649 } 650 z-index: 1;
650 651 background: $orange;
651 .linklist-item-description { 652 width: 2px;
652 &::before { 653 height: 100%;
653 @extend %private-border; 654 content: '';
654 height: 100%;
655 }
656 } 655 }
657 } 656 }
658} 657}