2014-12-08 18:28:57 +00:00
|
|
|
/**********
|
|
|
|
! Calendar
|
|
|
|
***********/
|
|
|
|
|
2014-12-08 19:35:19 +00:00
|
|
|
@include exports("calendar") {
|
|
|
|
GtkCalendar {
|
|
|
|
padding: $spacing;
|
|
|
|
outline-offset: -1px;
|
2014-12-08 18:28:57 +00:00
|
|
|
|
2014-12-08 19:35:19 +00:00
|
|
|
&:inconsistent { color: mix($fg_color, $bg_color, 0.5); }
|
2014-12-08 18:28:57 +00:00
|
|
|
|
2014-12-08 19:35:19 +00:00
|
|
|
&.view, &.highlight, &.header, &.button {
|
2015-05-31 16:20:35 +00:00
|
|
|
&, &:focus, &:hover, &:insensitive {
|
2014-12-08 19:35:19 +00:00
|
|
|
border: none;
|
|
|
|
background-color: transparent;
|
|
|
|
background-image: none;
|
|
|
|
}
|
2014-12-08 18:28:57 +00:00
|
|
|
}
|
|
|
|
|
2014-12-08 19:35:19 +00:00
|
|
|
&.highlight { color: $selected_bg_color; }
|
|
|
|
}
|
2014-12-19 21:41:02 +00:00
|
|
|
|
|
|
|
/* gnome-calendar */
|
|
|
|
.calendar-view {
|
|
|
|
background-color: $base_color;
|
|
|
|
color: $text_color;
|
|
|
|
}
|
2014-12-08 18:28:57 +00:00
|
|
|
}
|
2014-12-08 19:35:19 +00:00
|
|
|
|