diff options
author | raveit65 <[email protected]> | 2017-02-24 19:47:37 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-02-24 19:48:14 +0100 |
commit | 68882be0f33dfb540e8b7719c7c8bde7fb26b01d (patch) | |
tree | cdc842e749994cf8eec7c509e453984290af8ec7 /desktop-themes | |
parent | d547cac327026d3575d017c2ef053c1394567d48 (diff) | |
download | mate-themes-68882be0f33dfb540e8b7719c7c8bde7fb26b01d.tar.bz2 mate-themes-68882be0f33dfb540e8b7719c7c8bde7fb26b01d.tar.xz |
Gtk+-3.20 Traditional themes: workaround, fix some borders in firefox
Diffstat (limited to 'desktop-themes')
-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 aebf02ea..3a7bad41 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 a17bc64c..dab6239b 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; } |