diff options
author | raveit65 <[email protected]> | 2016-06-19 15:42:26 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-06-21 22:44:36 +0200 |
commit | 53a4cc8dd61a6b06c04131f94a38cfc1e8561906 (patch) | |
tree | 468749bce3126dbe80af19a8a0fb395709ef4b31 | |
parent | c23cad6bd25a49c55b336f3edc5c9855e1bfbea4 (diff) | |
download | mate-themes-53a4cc8dd61a6b06c04131f94a38cfc1e8561906.tar.bz2 mate-themes-53a4cc8dd61a6b06c04131f94a38cfc1e8561906.tar.xz |
GTK+-3.20 Menta themes: fix wrong bg color of notebook in wifi password dialog, nm-applet
-rw-r--r-- | desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css | 9 | ||||
-rw-r--r-- | desktop-themes/Menta/gtk-3.0/gtk-widgets.css | 9 |
2 files changed, 16 insertions, 2 deletions
diff --git a/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css b/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css index 730f034d..8fbb85bb 100644 --- a/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css @@ -1907,10 +1907,10 @@ notebook { padding: 0; background-clip: border-box; border-style: none; - background-color: shade (@theme_bg_color, 1.1); } notebook.frame { + background-color: shade (@theme_bg_color, 1.1); border-style: solid; border-color: @borders; border-width: 1px; @@ -1918,12 +1918,19 @@ notebook.frame { } printdialog > box.view.vertical.dialog-vbox > box.vertical > notebook { + background-color: shade (@theme_bg_color, 1.1); border-radius: 0px; border-style: solid; border-color: @borders; border-width: 0px 0px 1px 0px; } +dialog.background.csd > box.vertical.dialog-vbox > notebook, /* meld preferences */ +dialog.background.ssd > box.vertical.dialog-vbox > notebook, +dialog.background.solid-csd > box.vertical.dialog-vbox > notebook { + background-color: shade (@theme_bg_color, 1.1); +} + notebook :hover { -gtk-icon-effect: highlight; color: @theme_fg_color; diff --git a/desktop-themes/Menta/gtk-3.0/gtk-widgets.css b/desktop-themes/Menta/gtk-3.0/gtk-widgets.css index 523feaa3..41495848 100644 --- a/desktop-themes/Menta/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Menta/gtk-3.0/gtk-widgets.css @@ -1930,10 +1930,10 @@ notebook { padding: 0; background-clip: border-box; border-style: none; - background-color: shade (@theme_bg_color, 1.1); } notebook.frame { + background-color: shade (@theme_bg_color, 1.1); border-style: solid; border-color: @borders; border-width: 1px; @@ -1941,12 +1941,19 @@ notebook.frame { } printdialog > box.view.vertical.dialog-vbox > box.vertical > notebook { + background-color: shade (@theme_bg_color, 1.1); border-radius: 0px; border-style: solid; border-color: @borders; border-width: 0px 0px 1px 0px; } +dialog.background.csd > box.vertical.dialog-vbox > notebook, /* meld preferences */ +dialog.background.ssd > box.vertical.dialog-vbox > notebook, +dialog.background.solid-csd > box.vertical.dialog-vbox > notebook { + background-color: shade (@theme_bg_color, 1.1); +} + notebook :hover { -gtk-icon-effect: highlight; color: @theme_fg_color; |