diff options
author | raveit65 <[email protected]> | 2016-05-28 10:38:29 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-05-28 10:39:36 +0200 |
commit | c696bac654009030816b9f83333e858f907c82fa (patch) | |
tree | fe25fa8da378f7a48d2c94627b7979b1780d9b8d | |
parent | 59b3286ac467f19e9bce39783e71836ced239b7b (diff) | |
download | mate-themes-c696bac654009030816b9f83333e858f907c82fa.tar.bz2 mate-themes-c696bac654009030816b9f83333e858f907c82fa.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 3b304177..eff81636 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 889c8de4..1f134dd7 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: 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 229ea30a..1c9673ac 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 3ff76023..a2df4d03 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: 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); |