diff options
author | raveit65 <[email protected]> | 2017-02-26 14:26:46 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-02-26 14:27:38 +0100 |
commit | 0fc54a2f73a0af4afc829f58dd56db5a6586293e (patch) | |
tree | 4b30b6371ff4fb092b34e4d4e6b090d73c612577 /desktop-themes/TraditionalGreen | |
parent | 288c779494a105fdb8eafc0efb5179da57fdc020 (diff) | |
download | mate-themes-0fc54a2f73a0af4afc829f58dd56db5a6586293e.tar.bz2 mate-themes-0fc54a2f73a0af4afc829f58dd56db5a6586293e.tar.xz |
Gtk+-3.20 Traditional themes: use a border for the whole GtkInfobar
Fixes https://github.com/mate-desktop/mate-themes/issues/161
Diffstat (limited to 'desktop-themes/TraditionalGreen')
-rw-r--r-- | desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css b/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css index b39d35c4..aaeede12 100644 --- a/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css @@ -3772,17 +3772,19 @@ entry.error:focus, border-width: 1px; } -infobar:last-child, -.info:last-child, -.warning:last-child, -.question:last-child, -.error:last-child { - /* only apply a border on the last infobar if - * there's more than one packed in */ - border-bottom-width: 1px; +infobar, +.info, +.warning, +.question, +.error { + border-width: 1px; border-style: solid; } +infobar { + border-color: shade(@border_color, 0.9); +} + .info, .info > * { background-color: @info_bg_color; |