diff options
author | lukefromdc <[email protected]> | 2016-10-17 16:16:22 -0400 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-10-18 11:10:28 +0200 |
commit | 095d96d2aa2862c5a28767e708987adf46526800 (patch) | |
tree | 947995b709e4111019c9b926c2c4afcd1aab60f6 /desktop-themes/Blue-Submarine/gtk-3.0 | |
parent | f4efe059c078cc0f50d33f9d332fa3b7e08bee5e (diff) | |
download | mate-themes-095d96d2aa2862c5a28767e708987adf46526800.tar.bz2 mate-themes-095d96d2aa2862c5a28767e708987adf46526800.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/Blue-Submarine/gtk-3.0')
-rw-r--r-- | desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css | 8 | ||||
-rw-r--r-- | desktop-themes/Blue-Submarine/gtk-3.0/menu.css | 7 |
2 files changed, 15 insertions, 0 deletions
diff --git a/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css b/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css index 0cf69ca0..ff740ec1 100644 --- a/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css @@ -1059,6 +1059,14 @@ 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/Blue-Submarine/gtk-3.0/menu.css b/desktop-themes/Blue-Submarine/gtk-3.0/menu.css index f218141c..bc141749 100644 --- a/desktop-themes/Blue-Submarine/gtk-3.0/menu.css +++ b/desktop-themes/Blue-Submarine/gtk-3.0/menu.css @@ -155,6 +155,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; |