2014-12-08 18:28:57 +00:00
|
|
|
/**********
|
|
|
|
! Calendar
|
|
|
|
***********/
|
|
|
|
|
2014-12-08 19:35:19 +00:00
|
|
|
@include exports("calendar") {
|
2015-08-06 19:39:22 +00:00
|
|
|
GtkCalendar {
|
2016-01-30 10:07:23 +00:00
|
|
|
padding: 1px 3px;
|
2015-08-06 19:39:22 +00:00
|
|
|
outline-offset: -1px;
|
2015-12-28 13:14:42 +00:00
|
|
|
|
2015-08-06 23:10:35 +00:00
|
|
|
&:inconsistent { color: mix($fg_color, $bg_color, .5); }
|
2014-12-08 18:28:57 +00:00
|
|
|
|
2015-08-06 19:39:22 +00:00
|
|
|
&.view, &.highlight, &.header, &.button {
|
|
|
|
&, &:focus, &:hover, &:insensitive {
|
|
|
|
background-color: transparent;
|
|
|
|
background-image: none;
|
2015-12-28 13:09:23 +00:00
|
|
|
border-width: 0;
|
|
|
|
border-radius: 0;
|
2015-08-06 19:39:22 +00:00
|
|
|
}
|
|
|
|
}
|
2015-12-28 13:17:00 +00:00
|
|
|
|
2015-12-28 13:09:23 +00:00
|
|
|
&.button {
|
|
|
|
&, &:focus, &:hover, &:insensitive {
|
|
|
|
color: $white;
|
|
|
|
border-width: 0;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
}
|
2015-12-28 13:17:00 +00:00
|
|
|
|
2015-08-06 19:39:22 +00:00
|
|
|
&.highlight { color: $selected_bg_color; }
|
|
|
|
}
|
2015-12-28 13:17:00 +00:00
|
|
|
|
2015-08-06 19:39:22 +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
|
|
|
|