summaryrefslogtreecommitdiff
path: root/desktop-themes/Blue-Submarine
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2017-04-05 10:15:15 +0200
committerraveit65 <[email protected]>2017-04-05 10:15:15 +0200
commitab79d50fd010002f1134ace59b73637ee456ac12 (patch)
tree4d43d424c0aa07c39e90fdbc0b36204c9638f7dc /desktop-themes/Blue-Submarine
parent447b454f0d4b6c5b0cfbfebd5a69b93611aa1845 (diff)
downloadmate-themes-ab79d50fd010002f1134ace59b73637ee456ac12.tar.bz2
mate-themes-ab79d50fd010002f1134ace59b73637ee456ac12.tar.xz
Gtk+-3.20 submarine themes: mate-panel hide button modifications
Diffstat (limited to 'desktop-themes/Blue-Submarine')
-rw-r--r--desktop-themes/Blue-Submarine/gtk-3.0/mate-applications.css37
1 files changed, 26 insertions, 11 deletions
diff --git a/desktop-themes/Blue-Submarine/gtk-3.0/mate-applications.css b/desktop-themes/Blue-Submarine/gtk-3.0/mate-applications.css
index 2b09dc95..9f8b6e7f 100644
--- a/desktop-themes/Blue-Submarine/gtk-3.0/mate-applications.css
+++ b/desktop-themes/Blue-Submarine/gtk-3.0/mate-applications.css
@@ -393,30 +393,45 @@ PanelToplevel.background {
}
/* panel grip */
+/* FIXME, border-radius doesn't work any more */
PanelToplevel.background {
border-radius: 3px;
}
/* hide buttons */
-PanelToplevel > widget > button {
+/* horizontal panel */
+PanelToplevel.horizontal > grid > button:first-child {
+ border-radius: 3px 0px 0px 3px;
+}
+
+PanelToplevel.horizontal > grid > button {
+ border-radius: 0px 3px 3px 0px;
+}
+
+/* vertical panel */
+PanelToplevel.vertical > grid > button:first-child {
+ border-radius: 3px 3px 0px 0px;
+}
+
+PanelToplevel.vertical > grid > button {
+ border-radius: 0px 0px 3px 3px;
+}
+
+PanelToplevel > grid > button {
color: @menu_fg_dark_color;
background-image: none;
background: transparent;
border-style: none;
border-radius: 3px;
padding: 0px;
- box-shadow: inset 0px 2px alpha(#fff, 0.11),
- inset 2px 0px alpha(#fff, 0.09),
- inset -2px 0px alpha(#fff, 0.09),
- inset 0px -2px alpha(#fff, 0.07),
- inset 0px 1px alpha(shade(@button_border, 1.00), 0.70),
- inset 1px 0px alpha(shade(@button_border, 0.94), 0.80),
- inset -1px 0px alpha(shade(@button_border, 0.94), 0.80),
- inset 0px -1px alpha(shade(@button_border, 0.88), 0.90);
+ box-shadow: inset 0px 1px alpha(shade(@menu_fg_dark_color, 0.70), 0.80),
+ inset 1px 0px alpha(shade(@menu_fg_dark_color, 0.70), 0.80),
+ inset -1px 0px alpha(shade(@menu_fg_dark_color, 0.70), 0.80),
+ inset 0px -1px alpha(shade(@menu_fg_dark_color, 0.70), 0.80);
}
-PanelToplevel > widget > button:hover,
-PanelToplevel > widget > button:hover:active {
+PanelToplevel > grid > button:hover,
+PanelToplevel > grid > button:hover:active {
background-image: -gtk-gradient (linear,
left top, left bottom,
from (shade(@menu_bg_dark_color, 2.03)),