diff options
author | raveit65 <[email protected]> | 2016-04-12 00:09:40 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-04-12 00:10:43 +0200 |
commit | 8ae453c137f1d9012e9f2e4350d1d73ee570e000 (patch) | |
tree | 2060e56ff859ec625975829633551266ed3fc72f /desktop-themes | |
parent | c81c1d4e54c240e231dadb2558a1d82732bc0bbe (diff) | |
download | mate-themes-8ae453c137f1d9012e9f2e4350d1d73ee570e000.tar.bz2 mate-themes-8ae453c137f1d9012e9f2e4350d1d73ee570e000.tar.xz |
GTK+-3.20 Menta themes: fix for firefox text selection
Diffstat (limited to 'desktop-themes')
-rw-r--r-- | desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css | 24 | ||||
-rw-r--r-- | desktop-themes/Menta/gtk-3.0/gtk-widgets.css | 24 |
2 files changed, 48 insertions, 0 deletions
diff --git a/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css b/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css index ee446257..d023928e 100644 --- a/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css @@ -4134,6 +4134,30 @@ textview, color: shade (@theme_selected_bg_color, 0.35); } +/* for firefox and probably other apps */ +label:selected, +label selection, +label selection:focus, +label selection:hover { + background-color: @theme_selected_bg_color; + color: @theme_selected_fg_color; +} + +label:disabled:selected, +label selection:disabled { + color: @insensitive_fg_color; +} + +label:backdrop:selected, +label selection:backdrop { + color: @theme_fg_color; +} + +label:backdrop:disabled:selected, +label selection:backdrop:disabled { + color: @insensitive_fg_color; +} + .cell { padding: 2px; text-shadow: none; diff --git a/desktop-themes/Menta/gtk-3.0/gtk-widgets.css b/desktop-themes/Menta/gtk-3.0/gtk-widgets.css index 2acad086..6d0f063d 100644 --- a/desktop-themes/Menta/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Menta/gtk-3.0/gtk-widgets.css @@ -4134,6 +4134,30 @@ textview, color: shade (@theme_selected_bg_color, 0.35); } +/* for firefox and probably other apps */ +label:selected, +label selection, +label selection:focus, +label selection:hover { + background-color: @theme_selected_bg_color; + color: @theme_selected_fg_color; +} + +label:disabled:selected, +label selection:disabled { + color: @insensitive_fg_color; +} + +label:backdrop:selected, +label selection:backdrop { + color: @theme_fg_color; +} + +label:backdrop:disabled:selected, +label selection:backdrop:disabled { + color: @insensitive_fg_color; +} + .cell { padding: 2px; text-shadow: none; |