From 5f57df54627c61817226768bb360a8a93ea2c0b9 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 22 May 2020 11:15:31 +0200 Subject: Fix action button icons theme --- client/src/sass/include/_variables.scss | 2 ++ 1 file changed, 2 insertions(+) (limited to 'client/src/sass/include') diff --git a/client/src/sass/include/_variables.scss b/client/src/sass/include/_variables.scss index cdac8ae6f..58955802c 100644 --- a/client/src/sass/include/_variables.scss +++ b/client/src/sass/include/_variables.scss @@ -104,6 +104,8 @@ $variables: ( --markdownTextareaBackgroundColor: var(--markdownTextareaBackgroundColor), --actionButtonColor: var(--actionButtonColor), + --activatedActionButtonColor: var(--activatedActionButtonColor), + --supportButtonColor: var(--supportButtonColor), --supportButtonBackgroundColor: var(--supportButtonBackgroundColor), --supportButtonHeartColor: var(--supportButtonHeartColor), -- cgit v1.2.3 From c123027fd962a14433a325f85d2734b94a4df3ae Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 22 May 2020 11:21:55 +0200 Subject: Fix grey color theme --- client/src/sass/include/_miniature.scss | 4 ++-- client/src/sass/include/_mixins.scss | 10 +++++----- client/src/sass/include/_variables.scss | 2 ++ 3 files changed, 9 insertions(+), 7 deletions(-) (limited to 'client/src/sass/include') diff --git a/client/src/sass/include/_miniature.scss b/client/src/sass/include/_miniature.scss index c937a0f72..d0ee1e2f0 100644 --- a/client/src/sass/include/_miniature.scss +++ b/client/src/sass/include/_miniature.scss @@ -187,7 +187,7 @@ $play-overlay-width: 18px; } .followers { - color: $grey-foreground-color; + color: var(--greyForegroundColor); font-weight: normal; font-size: 14px; margin-left: 10px; @@ -203,7 +203,7 @@ $play-overlay-width: 18px; display: inline-block; font-size: 16px; text-transform: uppercase; - color: $grey-foreground-color; + color: var(--greyForegroundColor); margin-bottom: 10px; font-weight: $font-semibold; text-decoration: none; diff --git a/client/src/sass/include/_mixins.scss b/client/src/sass/include/_mixins.scss index 99ca25f9c..80a090159 100644 --- a/client/src/sass/include/_mixins.scss +++ b/client/src/sass/include/_mixins.scss @@ -156,7 +156,7 @@ @mixin tertiary-button { @include button-focus($grey-button-outline-color); - color: $grey-foreground-color; + color: var(--greyForegroundColor); background-color: transparent; &[disabled], &.disabled { @@ -173,11 +173,11 @@ &, &:active, &:focus { background-color: $grey-background-color; - color: $grey-foreground-color; + color: var(--greyForegroundColor); } &:hover, &:active, &:focus, &[disabled], &.disabled { - color: $grey-foreground-color; + color: var(--greyForegroundColor); background-color: $grey-background-hover-color; } @@ -186,7 +186,7 @@ } my-global-icon { - @include apply-svg-color($grey-foreground-color) + @include apply-svg-color(var(--greyForegroundColor)) } } @@ -769,7 +769,7 @@ vertical-align: middle !important; path { - fill: $grey-foreground-color !important; + fill: var(--greyForegroundColor) !important; } } diff --git a/client/src/sass/include/_variables.scss b/client/src/sass/include/_variables.scss index 58955802c..11561e268 100644 --- a/client/src/sass/include/_variables.scss +++ b/client/src/sass/include/_variables.scss @@ -91,6 +91,8 @@ $variables: ( --mainForegroundColor: var(--mainForegroundColor), --secondaryColor: var(--secondaryColor), + --greyForegroundColor: var(--greyForegroundColor), + --menuBackgroundColor: var(--menuBackgroundColor), --menuForegroundColor: var(--menuForegroundColor), --submenuColor: var(--submenuColor), -- cgit v1.2.3