diff options
author | raveit65 <[email protected]> | 2015-09-06 19:16:04 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-09-06 19:16:04 +0200 |
commit | 7acef7507719789688cb454b554b1ef1f2e65606 (patch) | |
tree | 564e6f64bdf8f3588611017808ef767af3faa92d /desktop-themes/Blue-Submarine | |
parent | 6a5e4b6bc60449e599df9ee09d36937219e15cef (diff) | |
download | mate-themes-7acef7507719789688cb454b554b1ef1f2e65606.tar.bz2 mate-themes-7acef7507719789688cb454b554b1ef1f2e65606.tar.xz |
Gtk3 submarine themes: adjust panel settings
- wnckpager support full transparancy
- fix padding-area of icons in na-tray
- style system-monitor applet
Diffstat (limited to 'desktop-themes/Blue-Submarine')
-rw-r--r-- | desktop-themes/Blue-Submarine/gtk-3.0/mate-applications.css | 36 |
1 files changed, 32 insertions, 4 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 650900b8..9889d100 100644 --- a/desktop-themes/Blue-Submarine/gtk-3.0/mate-applications.css +++ b/desktop-themes/Blue-Submarine/gtk-3.0/mate-applications.css @@ -945,24 +945,52 @@ MatePanelApplet > GtkMenuBar.menubar { font: normal; } +/* WnckPager */ WnckPager { background-image: none; border-color: transparent; - background-color: shade (@terminal_background_color, 1.15); + background-color: transparent; + text-shadow: none; + box-shadow: inset 0px 1px shade (@theme_selected_bg_color, 1.3), + inset 1px 0px shade (@theme_selected_bg_color, 1.3), + inset -1px 0px shade (@theme_selected_bg_color, 1.3), + inset 0px -1px shade (@theme_selected_bg_color, 1.3); +} + +/* selected WnckPager */ +WnckPager:selected { + background-image: linear-gradient(to bottom, + @theme_selected_bg_color, + shade (@theme_selected_bg_color, 0.36)); } /* prelight of WnckPager */ WnckPager:hover { background-image: linear-gradient(to bottom, - @theme_bg_color, - shade (@theme_selected_bg_color, 0.86)); + shade (@theme_selected_bg_color, 0.56), + @theme_selected_bg_color); +} + +/* no background for icon-padding area */ +GtkTrayIcon.background { + background-color: transparent; } NaTrayApplet { - -NaTrayApplet-icon-padding: 12px; + -NaTrayApplet-icon-padding: 3px; -NaTrayApplet-icon-size: 16; } +/* system-monitor-applet */ +MatePanelApplet .horizontal .vertical .frame { + box-shadow: inset 0px 1px shade (@theme_selected_bg_color, 1.3), + inset 1px 0px shade (@theme_selected_bg_color, 1.3), + inset -1px 0px shade (@theme_selected_bg_color, 1.3), + inset 0px -1px shade (@theme_selected_bg_color, 1.3); + border-style: none; + border-radius: 6px; +} + /* Classic icon style */ .mate-panel-menu-bar { -PanelMenuBar-icon-visible: true; |