UNPKG

805 BSCSSView Raw
1// mixin
2@mixin calendar-hover {
3 background: $color-fill1-2;
4}
5
6@mixin calendar-current {
7 color: $color-text1-3;
8}
9
10@mixin calendar-initial {
11 background-color: $color-transparent;
12 color: $color-text1-3;
13}
14
15@mixin calendar-disabled {
16 color: $color-text1-1;
17 background: $color-fill1-1;
18}
19
20@mixin calendar-selected {
21 color: $color-white;
22 background: $color-brand1-6;
23}
24
25@mixin calendar-hover-fullscreen {
26 background-color: $color-fill1-2;
27}
28
29@mixin calendar-current-fullscreen {
30 color: $color-text1-3;
31}
32
33@mixin calendar-selected-fullscreen {
34 border-top-color: $color-brand1-6;
35 font-weight: bold;
36 color: $color-brand1-6;
37 background: $color-brand1-1;
38}
39
40@mixin calendar-disabled-fullscreen {
41 color: $color-text1-1;
42 background: $color-fill1-1;
43}