UNPKG

1.06 kBSCSSView Raw
1@import '../core/index-noreset';
2
3@import "scss/variable";
4@import "scss/normalize";
5@import "scss/mixin";
6@import "scss/animation";
7
8@import "scss/header";
9@import "scss/table";
10@import "./rtl.scss";
11
12#{$calendar-prefix} {
13 &-table {
14 width: 100%;
15 table-layout: fixed;
16 }
17
18 /* range calendar */
19 /* --------------- */
20 &-range {
21 #{$calendar-prefix}-body {
22 &-left, &-right {
23 float: left;
24 width: 50%;
25 }
26
27 &-left {
28 padding-right: $s-2;
29 }
30
31 &-right {
32 padding-left: $s-2;
33 }
34
35 @include clearfix;
36 }
37 }
38
39 &-symbol-prev::before {
40 content: $calendar-btn-arrow-content-prev;
41 }
42 &-symbol-next::before {
43 content: $calendar-btn-arrow-content-next;
44 }
45 &-symbol-prev-super::before {
46 content: $calendar-btn-arrow-content-prev-super;
47 }
48 &-symbol-next-super::before {
49 content: $calendar-btn-arrow-content-next-super;
50 }
51}