From 56583717fe7bfc28a906d488f182ba7645fff651 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 20 Mar 2015 20:50:55 -0400 Subject: [PATCH] HighContrast: Fix a typo Commit 0a39d7d9 introduced a selected_bg_color with a missing $ in front of it. --- gtk/theme/HighContrast/_common.scss | 2 +- gtk/theme/HighContrast/gtk.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk/theme/HighContrast/_common.scss b/gtk/theme/HighContrast/_common.scss index 16578c3dcb..4289f75f90 100644 --- a/gtk/theme/HighContrast/_common.scss +++ b/gtk/theme/HighContrast/_common.scss @@ -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; } } diff --git a/gtk/theme/HighContrast/gtk.css b/gtk/theme/HighContrast/gtk.css index c8ee89e7e6..78ece44227 100644 --- a/gtk/theme/HighContrast/gtk.css +++ b/gtk/theme/HighContrast/gtk.css @@ -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; }