28 lines
449 B
SCSS
28 lines
449 B
SCSS
@import "functions";
|
|
@import "global";
|
|
|
|
|
|
/**********
|
|
! Calendar
|
|
***********/
|
|
|
|
@include exports("calendar") {
|
|
GtkCalendar {
|
|
padding: $spacing;
|
|
outline-offset: -1px;
|
|
|
|
&:inconsistent { color: mix($fg_color, $bg_color, 0.5); }
|
|
|
|
&.view, &.highlight, &.header, &.button {
|
|
&, &:hover, &:insensitive {
|
|
border: none;
|
|
background-color: transparent;
|
|
background-image: none;
|
|
}
|
|
}
|
|
|
|
&.highlight { color: $selected_bg_color; }
|
|
}
|
|
}
|
|
|