GTK3: Replaced hardcoded white color for selected items with $selected_fg_color
This commit is contained in:
@@ -46,7 +46,7 @@ filechooser,
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
|
||||
.sidebar-icon, .sidebar-label { color: white; }
|
||||
.sidebar-icon, .sidebar-label { color: $selected_fg_color; }
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -99,7 +99,7 @@ switch {
|
||||
*************************/
|
||||
check,
|
||||
radio {
|
||||
$_c: if($variant=='light', white, darken($bg_color, 2%));
|
||||
$_c: if($variant=='light', $bg_color, darken($bg_color, 2%));
|
||||
$_shadow: 0 1px 2px transparentize($shadow_color, 0.03);
|
||||
|
||||
&, menu menuitem &, menu menuitem:hover & {
|
||||
@@ -121,7 +121,7 @@ radio {
|
||||
background-image: linear-gradient(to bottom, $selected_bg_color 20%, darken($selected_bg_color, 2%) 90%);
|
||||
border-color: $selected_borders_color;
|
||||
box-shadow: inset 0 1px transparentize(white, .9), $_shadow;
|
||||
color: white;
|
||||
color: $selected_fg_color;
|
||||
|
||||
&:active { box-shadow: none; }
|
||||
&:backdrop { background-image: image($checkradio_bg_color); }
|
||||
|
||||
Reference in New Issue
Block a user