* [GTK 3.20] Fixed unity-panel calendar color.

pull/532/head
Megax 2016-08-28 13:48:46 +02:00
parent d24e294920
commit 5797580866
1 changed files with 21 additions and 5 deletions
gtk-3.20/scss/widgets

View File

@ -114,13 +114,29 @@
} }
calendar { calendar {
&:indeterminate { color: mix($menu_fg_color, $menu_bg_color, .5); } color: $menu_fg_color;
.button { &.header {
border-style: none; border-bottom: 1px solid shade($menu_bg_color, ($contrast + .1));
background-color: transparent; border-radius: 0;
background-image: none;
&: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); }
} }
} }