diff options
author | raveit65 <[email protected]> | 2017-02-24 19:47:37 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-02-24 19:48:33 +0100 |
commit | 288c779494a105fdb8eafc0efb5179da57fdc020 (patch) | |
tree | 023e5fcce9688da132385e80209e8855876c7634 | |
parent | 40454fbcc53ee4e81fdc7a43e74f4bea2d077050 (diff) | |
download | mate-themes-288c779494a105fdb8eafc0efb5179da57fdc020.tar.bz2 mate-themes-288c779494a105fdb8eafc0efb5179da57fdc020.tar.xz |
Gtk+-3.20 Traditional themes: workaround, fix some borders in firefox
-rw-r--r-- | desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css | 17 | ||||
-rw-r--r-- | desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css | 17 |
2 files changed, 34 insertions, 0 deletions
diff --git a/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css b/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css index 5026740c..b39d35c4 100644 --- a/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css @@ -838,6 +838,23 @@ scale progressbar { padding: 0; } +/* Style the Search and Location entry boxes for Firefox 49 */ +/* why frame and not entry ? FIXME */ +frame { + border-style: solid; + border-color: @border_color; +} + +/* Override the Firefox 49 frame styling where is absolutely shouldn't be applied */ +/* maybe we should add more here */ +box > frame, /* mate-tweak */ +statusbar > frame, /* caja, etc. */ +statusbar > widget > frame, /* pluma */ +GvcMixerDialog frame { /* Mate Mixer dialog */ + border-style: none; +} + +frame.flat, .frame.flat { border-style:none; } diff --git a/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css b/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css index 242d06a6..18471820 100644 --- a/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css @@ -839,6 +839,23 @@ scale progressbar { padding: 0; } +/* Style the Search and Location entry boxes for Firefox 49 */ +/* why frame and not entry ? FIXME */ +frame { + border-style: solid; + border-color: @border_color; +} + +/* Override the Firefox 49 frame styling where is absolutely shouldn't be applied */ +/* maybe we should add more here */ +box > frame, /* mate-tweak */ +statusbar > frame, /* caja, etc. */ +statusbar > widget > frame, /* pluma */ +GvcMixerDialog frame { /* Mate Mixer dialog */ + border-style: none; +} + +frame.flat, .frame.flat { border-style:none; } |