diff options
author | raveit65 <[email protected]> | 2018-06-30 14:51:16 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-07-13 11:32:23 +0200 |
commit | 7621a98dccb670bddf9665ad23149ef4257006c1 (patch) | |
tree | 2869ae19f559678319b040430b7f5446dc274355 /desktop-themes/Green-Submarine | |
parent | d168cdce2efbb1ebac95a17e80971c15e12f8b9d (diff) | |
download | mate-themes-7621a98dccb670bddf9665ad23149ef4257006c1.tar.bz2 mate-themes-7621a98dccb670bddf9665ad23149ef4257006c1.tar.xz |
all themes: add a thiny border to the panel
this requires
https://github.com/mate-desktop/mate-panel/commit/c4aedb
Diffstat (limited to 'desktop-themes/Green-Submarine')
-rw-r--r-- | desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css | 1 | ||||
-rw-r--r-- | desktop-themes/Green-Submarine/gtk-3.0/mate-applications.css | 31 |
2 files changed, 26 insertions, 6 deletions
diff --git a/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css b/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css index 84c1a36f..fb870f59 100644 --- a/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css @@ -6491,6 +6491,7 @@ decoration:backdrop { box-shadow: none;
}
+/* workaround to avoid unwanted black frames if switching compositor on/off */
.csd.popup decoration {
border-radius: 0;
box-shadow: none;
diff --git a/desktop-themes/Green-Submarine/gtk-3.0/mate-applications.css b/desktop-themes/Green-Submarine/gtk-3.0/mate-applications.css index 9c5a2dfd..31afaa58 100644 --- a/desktop-themes/Green-Submarine/gtk-3.0/mate-applications.css +++ b/desktop-themes/Green-Submarine/gtk-3.0/mate-applications.css @@ -400,14 +400,28 @@ PanelToplevel.background { text-shadow: none; } -/* checkboxes in applet popup menu */ -.mate-panel-menu-bar menu > menuitem > box > menuitem { - padding: 0px 0px 0px 4px; +PanelToplevel.horizontal.top > grid { + border-style: outset; + border-width: 0px 0px 1px 0px; + border-color: rgba(102, 102, 102, 0.33); } -/* workaround to avoid unwanted black frames if switching compositor on/off */ -.mate-panel-menu-bar .csd.popup decoration { - box-shadow: none; +PanelToplevel.horizontal.bottom > grid { + border-style: outset; + border-width: 1px 0px 0px 0px; + border-color: rgba(102, 102, 102, 0.33); +} + +PanelToplevel.vertical.left > grid { + border-style: outset; + border-width: 0px 1px 0px 0px; + border-color: rgba(102, 102, 102, 0.33); +} + +PanelToplevel.vertical.right > grid { + border-style: outset; + border-width: 0px 0px 0px 1px; + border-color: rgba(102, 102, 102, 0.33); } /* panel grip */ @@ -507,6 +521,11 @@ window.background, /* selector where outlines are writen on GtkTrayIcon */ color: shade (@theme_selected_bg_color, 1.3); } +/* checkboxes in applet popup menu */ +.mate-panel-menu-bar menu > menuitem > box > menuitem { + padding: 0px 0px 0px 4px; +} + /* most applets */ #PanelApplet button, #PanelApplet button.flat, |