_calendar.scss (629B)
1 /********** 2 ! Calendar 3 ***********/ 4 5 @include exports("calendar") { 6 GtkCalendar { 7 padding: $spacing; 8 outline-offset: -1px; 9 10 &:inconsistent { color: mix($fg_color, $bg_color, .5); } 11 12 &.view, &.highlight, &.header, &.button { 13 &, &:focus, &:hover, &:insensitive { 14 border: 0; 15 background-color: transparent; 16 background-image: none; 17 } 18 } 19 20 &.highlight { color: $selected_bg_color; } 21 } 22 23 /* gnome-calendar */ 24 .calendar-view { 25 background-color: $base_color; 26 color: $text_color; 27 } 28 } 29