diff options
author | raveit65 <[email protected]> | 2016-05-28 10:38:29 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-05-28 10:38:29 +0200 |
commit | a79a99fce332a8d4ad06ae48fd865625a909cc3c (patch) | |
tree | bc1644e039ddc4aa486e8c149bf187d31a979957 | |
parent | a8156eedaf960fd8a2c26ceb972f56eebbd7dfa9 (diff) | |
download | mate-themes-a79a99fce332a8d4ad06ae48fd865625a909cc3c.tar.bz2 mate-themes-a79a99fce332a8d4ad06ae48fd865625a909cc3c.tar.xz |
GTK+-3.20 TOK themes: improve GtkCalendar settings
- remove weird transparent border from calendar header
- remove border from expander in clock applet
- set a border radius for calendar window clock applet
4 files changed, 23 insertions, 6 deletions
diff --git a/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css b/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css index 5a466919..59fd453c 100644 --- a/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css @@ -3490,7 +3490,7 @@ expander toolbar.inline-toolbar { /* Calendars */ calendar { - padding: 2px; + padding: 1px; border-style:none; } @@ -3499,11 +3499,10 @@ calendar.view { border-style: solid; border-width: 1px; border-color: rgb(162,158,155); - padding: 2px; } calendar.header { - border-radius: 0; + border-radius: 3px 3px 0px 0px; background-image: -gtk-gradient (linear, left top, left bottom, diff --git a/desktop-themes/TraditionalGreen/gtk-3.0/mate-applications.css b/desktop-themes/TraditionalGreen/gtk-3.0/mate-applications.css index 6f8e4941..98a6688b 100644 --- a/desktop-themes/TraditionalGreen/gtk-3.0/mate-applications.css +++ b/desktop-themes/TraditionalGreen/gtk-3.0/mate-applications.css @@ -215,6 +215,15 @@ PanelSeparator { font-weight: normal; } +/* calendar window */ +#MatePanelPopupWindow { + border-radius: 3px; +} + +#MatePanelPopupWindow expander { + border-style: none; +} + PanelApplet.wnck-applet .wnck-pager { background-image: none; color: shade (@theme_selected_bg_color, 1.30); diff --git a/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css b/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css index cbbac0e2..31c9aee0 100644 --- a/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css @@ -3490,7 +3490,7 @@ expander toolbar.inline-toolbar { /* Calendars */ calendar { - padding: 2px; + padding: 1px; border-style:none; } @@ -3499,11 +3499,11 @@ calendar.view { border-style: solid; border-width: 1px; border-color: rgb(162,158,155); - padding: 2px; + padding: 0px; } calendar.header { - border-radius: 0; + border-radius: 3px 3px 0px 0px; background-image: -gtk-gradient (linear, left top, left bottom, diff --git a/desktop-themes/TraditionalOk/gtk-3.0/mate-applications.css b/desktop-themes/TraditionalOk/gtk-3.0/mate-applications.css index 0befc93a..45378e5d 100644 --- a/desktop-themes/TraditionalOk/gtk-3.0/mate-applications.css +++ b/desktop-themes/TraditionalOk/gtk-3.0/mate-applications.css @@ -214,6 +214,15 @@ PanelSeparator { font-weight: normal; } +/* calendar window */ +#MatePanelPopupWindow { + border-radius: 3px; +} + +#MatePanelPopupWindow expander { + border-style: none; +} + PanelApplet.wnck-applet .wnck-pager { background-image: none; color: shade (@theme_selected_bg_color, 1.30); |