numix-gtk-theme/gtk-3.20/scss/widgets/_calendar.scss

75 lines
1.5 KiB
SCSS
Raw Normal View History

2016-04-09 04:30:09 +00:00
/**********
! Calendar
***********/
@include exports("calendar") {
calendar {
padding: $spacing;
outline-offset: -1px;
2016-05-08 09:54:48 +00:00
color: $text_color;
&.view {
&, &:backdrop { @extend %undecorated_button; }
}
&:selected {
@extend %selected_items;
padding: 5px;
border-radius: $roundness;
}
&.header {
border-bottom: 1px solid transparentize($black, .9);
border-radius: 0;
&:backdrop { border-color: transparentize($black, .9); }
}
&.button {
@extend %undecorated_button;
color: alpha($fg_color, .55);
2016-04-09 04:30:09 +00:00
2016-05-08 09:54:48 +00:00
&:hover {
@extend %undecorated_button;
color: $fg_color;
}
&:backdrop {
@extend %undecorated_button;
color: alpha($backdrop_fg_color, .55);
}
&:disabled {
@extend %undecorated_button;
color: alpha($insensitive_fg_color, .55);
2016-04-09 04:30:09 +00:00
}
}
2016-05-08 09:54:48 +00:00
&:indeterminate,
&:indeterminate:backdrop { color: mix($fg_color, $bg_color, .5); }
&.highlight,
&.highlight:backdrop {
font-size: smaller;
color: $selected_bg_color;
}
&:backdrop {
color: $backdrop_text_color;
}
2016-04-09 04:30:09 +00:00
}
/* gnome-calendar */
.calendar-view {
background-color: $base_color;
color: $text_color;
}
}