[GTK 3.20] Fixed unity-panel calendar color.

pull/536/head
Csaba Jakosa 2016-08-28 18:37:43 +02:00 committed by Khurshid Alam
parent 27b4ce7f52
commit 9909cecf26
1 changed files with 21 additions and 5 deletions

View File

@ -114,13 +114,29 @@
}
calendar {
&:indeterminate { color: mix($menu_fg_color, $menu_bg_color, .5); }
color: $menu_fg_color;
.button {
border-style: none;
background-color: transparent;
background-image: none;
&.header {
border-bottom: 1px solid shade($menu_bg_color, ($contrast + .1));
border-radius: 0;
&:backdrop { border-color: shade($menu_bg_color, ($contrast + .1)); }
}
&.button {
@extend %undecorated_button;
color: alpha($menu_fg_color, .55);
&:hover {
@extend %undecorated_button;
color: $menu_fg_color;
}
}
&:indeterminate,
&:indeterminate:backdrop { color: mix($menu_fg_color, $menu_bg_color, .5); }
}
}