diff options
author | raveit65 <[email protected]> | 2015-09-07 10:51:44 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-09-07 10:53:23 +0200 |
commit | f394da9cde07ea74c8db15f93b7d8c7afb97c943 (patch) | |
tree | fc844b96c24428c7ec87e5b76286694a219cae15 | |
parent | 0f6a9ba095826e3b80f1c28610a1ec10dd405576 (diff) | |
download | mate-themes-f394da9cde07ea74c8db15f93b7d8c7afb97c943.tar.bz2 mate-themes-f394da9cde07ea74c8db15f93b7d8c7afb97c943.tar.xz |
GTK3 Menta themes: style panel grip and hide buttons
-rw-r--r-- | desktop-themes/BlueMenta/gtk-3.0/mate-applications.css | 31 | ||||
-rw-r--r-- | desktop-themes/Menta/gtk-3.0/mate-applications.css | 31 |
2 files changed, 62 insertions, 0 deletions
diff --git a/desktop-themes/BlueMenta/gtk-3.0/mate-applications.css b/desktop-themes/BlueMenta/gtk-3.0/mate-applications.css index 29ff5f13..6bd50df6 100644 --- a/desktop-themes/BlueMenta/gtk-3.0/mate-applications.css +++ b/desktop-themes/BlueMenta/gtk-3.0/mate-applications.css @@ -382,6 +382,37 @@ PanelSeparator { text-shadow: none; } +/* panel grip */ +PanelToplevel.background.mate-custom-panel-background { + background-color: transparent; + border-radius: 2px; +/* enable for making borders visible */ +/* box-shadow: inset 0px 1px shade (@theme_bg_color, 1.0), + inset 1px 0px shade (@theme_bg_color, 1.0), + inset -1px 0px shade (@theme_bg_color, 1.0), + inset 0px -1px shade (@theme_bg_color, 1.0); */ +} + +/* hide buttons */ +PanelToplevel.background.mate-custom-panel-background .button { + background: transparent; + border-image: none; + border-radius: 2px; + border-width: 0px; + padding: 0px 4px; + box-shadow: inset 0px 1px shade (@theme_bg_color, 1.0), + inset 1px 0px shade (@theme_bg_color, 1.0), + inset -1px 0px shade (@theme_bg_color, 1.0), + inset 0px -1px shade (@theme_bg_color, 1.0); +} + +PanelToplevel.background.mate-custom-panel-background .button:hover { + box-shadow: inset 0px 1px shade (@theme_selected_bg_color, 1.0), + inset 1px 0px shade (@theme_selected_bg_color, 1.0), + inset -1px 0px shade (@theme_selected_bg_color, 1.0), + inset 0px -1px shade (@theme_selected_bg_color, 1.0); +} + /* the grid left from wnckpager and wncktasklist */ MatePanelAppletFrameDBus { background-image: -gtk-scaled(url("assets/panel-grid.svg")); diff --git a/desktop-themes/Menta/gtk-3.0/mate-applications.css b/desktop-themes/Menta/gtk-3.0/mate-applications.css index 0bccb573..c0669299 100644 --- a/desktop-themes/Menta/gtk-3.0/mate-applications.css +++ b/desktop-themes/Menta/gtk-3.0/mate-applications.css @@ -376,6 +376,37 @@ MatePanelApplet { border-width: 0; } +/* panel grip */ +PanelToplevel.background.mate-custom-panel-background { + background-color: transparent; + border-radius: 2px; +/* enable for making borders visible */ +/* box-shadow: inset 0px 1px shade (@theme_bg_color, 1.0), + inset 1px 0px shade (@theme_bg_color, 1.0), + inset -1px 0px shade (@theme_bg_color, 1.0), + inset 0px -1px shade (@theme_bg_color, 1.0); */ +} + +/* hide buttons */ +PanelToplevel.background.mate-custom-panel-background .button { + background: transparent; + border-image: none; + border-radius: 2px; + border-width: 0px; + padding: 0px 4px; + box-shadow: inset 0px 1px shade (@theme_bg_color, 1.0), + inset 1px 0px shade (@theme_bg_color, 1.0), + inset -1px 0px shade (@theme_bg_color, 1.0), + inset 0px -1px shade (@theme_bg_color, 1.0); +} + +PanelToplevel.background.mate-custom-panel-background .button:hover { + box-shadow: inset 0px 1px shade (@theme_selected_bg_color, 1.0), + inset 1px 0px shade (@theme_selected_bg_color, 1.0), + inset -1px 0px shade (@theme_selected_bg_color, 1.0), + inset 0px -1px shade (@theme_selected_bg_color, 1.0); +} + MatePanelAppletFrameDBus PanelSeparator, PanelSeparator { border-width: 0; |