* Fixed backdrop font color.

pull/319/head
Megax 2016-04-11 16:52:01 +02:00
parent 9c9bf64389
commit 1c803f79b3
1 changed files with 2 additions and 2 deletions
gtk-3.20/scss

View File

@ -89,8 +89,8 @@ $insensitive_bg_color: mix($bg_color, $base_color, .6);
$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_text_color: mix($text_color, $backdrop_base_color, .8);
$backdrop_base_color: if($variant == 'light', darken($base_color, .01), lighten($base_color, .01));
$backdrop_text_color: mix($backdrop_base_color, $text_color, .8);
$backdrop_bg_color: $bg_color;
$backdrop_fg_color: mix($fg_color, $backdrop_bg_color, .5);
$backdrop_insensitive_color: if($variant == 'light', darken($backdrop_bg_color, 15%), lighten($backdrop_bg_color, 15%));