summaryrefslogtreecommitdiff
path: root/gtk/theme/Adwaita/_colors.scss
diff options
context:
space:
mode:
authorLapo Calamandrei <calamandrei@gmail.com>2016-03-19 18:55:13 +0100
committerLapo Calamandrei <calamandrei@gmail.com>2016-03-19 18:56:41 +0100
commite079b92a55d0deb483ecdfef0b43c48bbd6b0b7f (patch)
tree73bc2064de005da5b97241d272242f373bd37197 /gtk/theme/Adwaita/_colors.scss
parent20a8ac5542736e7f96c916982ac969b160a59e2d (diff)
downloadgtk+-e079b92a55d0deb483ecdfef0b43c48bbd6b0b7f.tar.gz
Adwaita: fix label styling
backdrop wasn't in the mix, added and adjusted other widgets styling not to be overridden by it when not needed. Spotted a typo making the backdrop base color white in the process.
Diffstat (limited to 'gtk/theme/Adwaita/_colors.scss')
-rw-r--r--gtk/theme/Adwaita/_colors.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/theme/Adwaita/_colors.scss b/gtk/theme/Adwaita/_colors.scss
index 13322cae2b..d8aa98ba26 100644
--- a/gtk/theme/Adwaita/_colors.scss
+++ b/gtk/theme/Adwaita/_colors.scss
@@ -52,7 +52,7 @@ $insensitive_bg_color: mix($bg_color, $base_color, 60%);
$insensitive_borders_color: $borders_color;
//colors for the backdrop state, derived from the main colors.
-$backdrop_base_color: if($variant ==' light', darken($base_color, 1%), lighten($base_color, 1%));
+$backdrop_base_color: if($variant == 'light', darken($base_color, 1%), lighten($base_color, 1%));
$backdrop_text_color: mix($text_color, $backdrop_base_color, 80%);
$backdrop_bg_color: $bg_color;
$backdrop_fg_color: mix($fg_color, $backdrop_bg_color, 50%);