Files
numix-blue-gtk-theme/gtk-3.0/scss/widgets/_calendar.scss
T

43 lines
1.0 KiB
SCSS
Raw Normal View History

2014-12-08 23:58:57 +05:30
/**********
! Calendar
***********/
@include exports("calendar") {
2015-08-07 01:09:22 +05:30
GtkCalendar {
2015-12-28 14:09:23 +01:00
margin: 4px;
2015-08-07 01:09:22 +05:30
padding: $spacing;
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
&:selected {
2015-08-07 01:09:22 +05:30
&, &:focus, &:hover, &:insensitive {
background-color: transparent;
2015-12-28 14:09:23 +01:00
color: $selected_bg_color;
2015-08-07 01:09:22 +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;
}
}
&.button {
&, &:focus, &:hover, &:insensitive {
color: $white;
border-width: 0;
box-shadow: none;
}
}
2015-08-07 01:09:22 +05:30
&.highlight { color: $selected_bg_color; }
}
/* gnome-calendar */
.calendar-view {
background-color: $base_color;
color: $text_color;
}
2014-12-08 23:58:57 +05:30
}