HighContrast: Fix a typo

Commit 0a39d7d9 introduced a selected_bg_color with a missing $
in front of it.
This commit is contained in:
Matthias Clasen
2015-03-20 20:50:55 -04:00
parent 1d93297a3a
commit 56583717fe
2 changed files with 2 additions and 2 deletions

View File

@@ -587,7 +587,7 @@ $_dot_color: $selected_bg_color;
&:backdrop {
color: $backdrop_fg_color;
@extend %undecorated_button;
&:hover { color: $selected_fg_color; background-color: selected_bg_color; }
&:hover { color: $selected_fg_color; background-color: $selected_bg_color; }
}
&:insensitive { color: $insensitive_fg_color; }
}

View File

@@ -782,7 +782,7 @@
color: #000; }
.menuitem.button.flat:backdrop:hover {
color: #fff;
background-color: selected_bg_color; }
background-color: #000; }
.menuitem.button.flat:insensitive {
color: #7f7f7f; }