diff options
author | Zero~Informatique | 2020-02-14 09:19:53 +0100 |
---|---|---|
committer | Zero~Informatique | 2020-02-24 00:04:39 +0100 |
commit | 370e3db3455f548699ff5e046e0f8dcc304991ac (patch) | |
tree | e29fe9e2afb940eea74c8ed510c46a1eb0fa4d84 /viewer/src/assets/scss/global.scss | |
parent | e42f4e864bac21ed3b19d1869df2cdd4f8c3433c (diff) | |
download | ldgallery-370e3db3455f548699ff5e046e0f8dcc304991ac.tar.gz |
viewer: major code and search mode overhaul
Updated libraries to the lastest version
SCSS Formatter as suggested VSC extensions
Renamed toolbar-color by scrollbar-color
LD components use Props in favor of touching the stores directly (when possible)
Moved most common algorithms to a "services" folder
Complete search overhaul (lots of code change)
Diffstat (limited to 'viewer/src/assets/scss/global.scss')
-rw-r--r-- | viewer/src/assets/scss/global.scss | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/viewer/src/assets/scss/global.scss b/viewer/src/assets/scss/global.scss index ed69841..ea25513 100644 --- a/viewer/src/assets/scss/global.scss +++ b/viewer/src/assets/scss/global.scss | |||
@@ -27,6 +27,10 @@ | |||
27 | color: red; | 27 | color: red; |
28 | } | 28 | } |
29 | 29 | ||
30 | button svg + span { | ||
31 | margin-left: 7px; | ||
32 | } | ||
33 | |||
30 | // === Tools | 34 | // === Tools |
31 | 35 | ||
32 | .nowrap { | 36 | .nowrap { |
@@ -66,11 +70,10 @@ | |||
66 | // Disable sticky hover styling on touch devices, | 70 | // Disable sticky hover styling on touch devices, |
67 | // on which the virtual cursor doesn't leave the element after being tapped. | 71 | // on which the virtual cursor doesn't leave the element after being tapped. |
68 | // The fix can be applied to `a` elements by using the .link class. | 72 | // The fix can be applied to `a` elements by using the .link class. |
69 | @media (hover:none), (hover:on-demand) { | 73 | @media (hover: none), (hover: on-demand) { |
70 | .link:hover { | 74 | .link:hover { |
71 | color: $link !important; | 75 | color: $link !important; |
72 | } | 76 | } |
73 |  | ||
74 | .disabled:hover { | 77 | .disabled:hover { |
75 | color: $disabled-color !important; | 78 | color: $disabled-color !important; |
76 | } | 79 | } |
@@ -90,7 +93,7 @@ | |||
90 | } | 93 | } |
91 | .scrollbar::-webkit-scrollbar-thumb { | 94 | .scrollbar::-webkit-scrollbar-thumb { |
92 | box-shadow: inset 0 0 1px black; | 95 | box-shadow: inset 0 0 1px black; |
93 | background-color: $toolbar-color; | 96 | background-color: $scrollbar-color; |
94 | } | 97 | } |
95 | 98 | ||
96 | // === Thumbnail tiles alignment | 99 | // === Thumbnail tiles alignment |