2014-12-08 23:58:57 +05:30
|
|
|
/**********
|
|
|
|
|
! Calendar
|
|
|
|
|
***********/
|
|
|
|
|
|
2014-12-09 01:05:19 +05:30
|
|
|
@include exports("calendar") {
|
2015-08-07 01:09:22 +05:30
|
|
|
GtkCalendar {
|
2016-01-03 10:06:24 +01:00
|
|
|
padding: 1px 5px;
|
2015-08-07 01:09:22 +05:30
|
|
|
outline-offset: -1px;
|
2015-12-28 14:14:42 +01:00
|
|
|
|
2015-08-07 04:40:35 +05:30
|
|
|
&:inconsistent { color: mix($fg_color, $bg_color, .5); }
|
2014-12-08 23:58:57 +05:30
|
|
|
|
2015-12-28 14:09:23 +01:00
|
|
|
&.view, &.highlight, &.header, &.button {
|
|
|
|
|
&, &:focus, &:hover, &:insensitive {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
background-image: none;
|
|
|
|
|
border-width: 0;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-12-28 14:17:00 +01:00
|
|
|
|
2015-12-28 14:09:23 +01:00
|
|
|
&.button {
|
|
|
|
|
&, &:focus, &:hover, &:insensitive {
|
|
|
|
|
color: $white;
|
|
|
|
|
border-width: 0;
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-12-28 14:17:00 +01:00
|
|
|
|
2015-08-07 01:09:22 +05:30
|
|
|
&.highlight { color: $selected_bg_color; }
|
|
|
|
|
}
|
2015-12-28 14:17:00 +01:00
|
|
|
|
2015-08-07 01:09:22 +05:30
|
|
|
/* gnome-calendar */
|
|
|
|
|
.calendar-view {
|
|
|
|
|
background-color: $base_color;
|
|
|
|
|
color: $text_color;
|
|
|
|
|
}
|
2014-12-08 23:58:57 +05:30
|
|
|
}
|
2014-12-09 01:05:19 +05:30
|
|
|
|