diff options
author | Zero~Informatique | 2020-02-02 05:20:24 +0100 |
---|---|---|
committer | Zero~Informatique | 2020-02-02 05:20:24 +0100 |
commit | b88adf17c2ff40f051b356bcfab006ff3a7fbc97 (patch) | |
tree | d5bc551039c3b56bf65f392711d0ae8c2a9431ea /viewer | |
parent | 3ed40acc6a788f4229a7ceab712068ec970e81cd (diff) | |
download | ldgallery-b88adf17c2ff40f051b356bcfab006ff3a7fbc97.tar.gz |
viewer: disabled colour is now static instead of an arbitrary alpha
Diffstat (limited to 'viewer')
-rw-r--r-- | viewer/src/assets/scss/theme.scss | 2 | ||||
-rw-r--r-- | viewer/src/components/LdBreadcrumb.vue | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/viewer/src/assets/scss/theme.scss b/viewer/src/assets/scss/theme.scss index 1b474e8..f46b9f5 100644 --- a/viewer/src/assets/scss/theme.scss +++ b/viewer/src/assets/scss/theme.scss | |||
@@ -33,7 +33,7 @@ $loader-color: #272727; | |||
33 | // Overrides - Buefy | 33 | // Overrides - Buefy |
34 | $link: $panel-top-txtcolor; | 34 | $link: $panel-top-txtcolor; |
35 | $link-hover: lightblue; | 35 | $link-hover: lightblue; |
36 | $disabled-color: rgba($link, 0.3); | 36 | $disabled-color: #656589; |
37 | $control-radius: 0; | 37 | $control-radius: 0; |
38 | $input-radius: 0; | 38 | $input-radius: 0; |
39 | $loading-background: $panel-top-bgcolor; | 39 | $loading-background: $panel-top-bgcolor; |
diff --git a/viewer/src/components/LdBreadcrumb.vue b/viewer/src/components/LdBreadcrumb.vue index 8c5b7eb..171e96a 100644 --- a/viewer/src/components/LdBreadcrumb.vue +++ b/viewer/src/components/LdBreadcrumb.vue | |||
@@ -42,8 +42,10 @@ export default class LdBreadcrumb extends Vue { | |||
42 | </script> | 42 | </script> |
43 | 43 | ||
44 | <style lang="scss"> | 44 | <style lang="scss"> |
45 | @import "@/assets/scss/theme.scss"; | ||
46 | |||
45 | .ld-breadcrumb { | 47 | .ld-breadcrumb { |
46 | border-left: 2px solid rgba(white, 0.1); | 48 | border-left: 1px solid $disabled-color; |
47 | padding-left: 15px; | 49 | padding-left: 15px; |
48 | display: flex; | 50 | display: flex; |
49 | list-style: none; | 51 | list-style: none; |