themes: Use $selected_fg_color for :hovered emoji

This is much needed for HighContrast as otherwise emoji are invisible
(or nearly in Inverse). It also syncs up with hovered menu items, etc.

https://bugzilla.gnome.org/show_bug.cgi?id=787279
This commit is contained in:
Daniel Boles 2017-09-05 00:48:06 +01:00
parent 21c7ea2bd4
commit 464df4007b
6 changed files with 6 additions and 4 deletions

View File

@ -4468,5 +4468,6 @@ button.emoji-section {
:hover {
background: $selected_bg_color;
color: $selected_fg_color;
}
}

View File

@ -1916,7 +1916,7 @@ button.emoji-section:checked label { opacity: 1; }
.emoji { font-size: x-large; padding: 6px; border-radius: 6px; }
.emoji :hover { background: #215d9c; }
.emoji :hover { background: #215d9c; color: #ffffff; }
/* GTK NAMED COLORS ---------------- use responsibly! */
/*

View File

@ -1936,7 +1936,7 @@ button.emoji-section:checked label { opacity: 1; }
.emoji { font-size: x-large; padding: 6px; border-radius: 6px; }
.emoji :hover { background: #4a90d9; }
.emoji :hover { background: #4a90d9; color: #ffffff; }
/* GTK NAMED COLORS ---------------- use responsibly! */
/*

View File

@ -3459,5 +3459,6 @@ button.emoji-section:backdrop { /* Dodge stuff inherited from backdrop button */
:hover {
background: $selected_bg_color;
color: $selected_fg_color;
}
}

View File

@ -1598,4 +1598,4 @@ button.emoji-section:checked label, button.emoji-section:backdrop:checked label
.emoji { font-size: x-large; padding: 6px; border-radius: 6px; }
.emoji :hover { background: #ddd; }
.emoji :hover { background: #ddd; color: #000; }

View File

@ -1604,4 +1604,4 @@ button.emoji-section:checked label, button.emoji-section:backdrop:checked label
.emoji { font-size: x-large; padding: 6px; border-radius: 6px; }
.emoji :hover { background: #000; }
.emoji :hover { background: #000; color: #fff; }