diff options
author | lukefromdc <[email protected]> | 2016-10-17 16:16:22 -0400 |
---|---|---|
committer | lukefromdc <[email protected]> | 2016-10-17 16:16:22 -0400 |
commit | e227d0ab9531813842716e8f4634493ef029ee39 (patch) | |
tree | 6d21c3a329addb445411be1d51173361fc07ca49 /desktop-themes/Green-Submarine | |
parent | 34b657a028c6183359b689dae18c1781a074fb49 (diff) | |
download | mate-themes-e227d0ab9531813842716e8f4634493ef029ee39.tar.bz2 mate-themes-e227d0ab9531813842716e8f4634493ef029ee39.tar.xz |
Most themes: gray out images in disabled buttons and menuitems
This is important in pause/queue buttons in Caja file copy dialogs and looks much better in menuitems and other buttons too
Diffstat (limited to 'desktop-themes/Green-Submarine')
-rw-r--r-- | desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css | 7 | ||||
-rw-r--r-- | desktop-themes/Green-Submarine/gtk-3.0/menu.css | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css b/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css index de707ce8..846185fd 100644 --- a/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css @@ -1063,6 +1063,13 @@ button:disabled { text-shadow: none;
}
+button:disabled image,
+.button:disabled image,
+button:active:disabled image,
+.button:active:disabled image{
+ opacity: 0.5;
+}
+
toolbar.vertical > button.image-button.flat {
padding: 5px;
}
diff --git a/desktop-themes/Green-Submarine/gtk-3.0/menu.css b/desktop-themes/Green-Submarine/gtk-3.0/menu.css index 1b3ab435..6d3186e4 100644 --- a/desktop-themes/Green-Submarine/gtk-3.0/menu.css +++ b/desktop-themes/Green-Submarine/gtk-3.0/menu.css @@ -157,6 +157,13 @@ menu > menuitem accelerator:disabled, text-shadow: none; } +menuitem:disabled image, +.menuitem:disabled image, +menuitem:active:disabled image, +.menuitem:active:disabled image{ + opacity: 0.5; +} + /* combobox menus */ combobox #gtk-combobox-popup-menu menuitem cellview { text-shadow: none; |