1
0
mirror of https://github.com/horst3180/arc-theme.git synced 2024-10-27 19:04:02 +00:00

gnome-shell: fix search-entry selection highlight

This commit is contained in:
Horst3180 2015-07-18 18:47:09 +02:00
parent 2a70924f33
commit 618e8624fb
3 changed files with 9 additions and 1 deletions

View File

@ -633,6 +633,9 @@ StScrollBar StButton#vhandle:active {
caret-color: #ffffff; caret-color: #ffffff;
background-color: #5294E2; background-color: #5294E2;
selection-background-color: $selected_fg_color;
selected-color: $selected_bg_color;
font-weight: bold; font-weight: bold;
transition-duration: 0ms; transition-duration: 0ms;
} }

View File

@ -1049,7 +1049,9 @@ StScrollBar {
.search-entry:hover, .search-entry:focus { .search-entry:hover, .search-entry:focus {
color: #ffffff; color: #ffffff;
caret-color: #ffffff; caret-color: #ffffff;
background-color: #5294E2; } background-color: #5294E2;
selection-background-color: #ffffff;
selected-color: #5294E2; }
.search-entry:hover .search-entry-icon, .search-entry:focus .search-entry-icon { .search-entry:hover .search-entry-icon, .search-entry:focus .search-entry-icon {
color: #ffffff; } color: #ffffff; }

View File

@ -1333,6 +1333,9 @@ StScrollBar {
caret-color: $selected_fg_color; caret-color: $selected_fg_color;
background-color: $selected_bg_color; background-color: $selected_bg_color;
selection-background-color: $selected_fg_color;
selected-color: $selected_bg_color;
.search-entry-icon { color: $selected_fg_color; } .search-entry-icon { color: $selected_fg_color; }
} }
} }