UNPKG

616 BSCSSView Raw
1//
2// date-picker 样式
3//
4#{$date-picker-prefix},
5#{$month-picker-prefix},
6#{$year-picker-prefix},
7#{$week-picker-prefix} {
8 display: inline-block;
9 width: $s-50;
10
11 &-input {
12 width: 100%;
13 }
14
15 &-body {
16 width: calc(#{$s-18} * 4);
17 }
18
19 &-panel-input#{$date-picker-input-prefix} {
20 width: 100%;
21 background: $color-transparent;
22 }
23}
24
25#{$date-picker-prefix}-body#{$date-picker-prefix}-body-show-time {
26 #{$date-picker-prefix}-panel-input#{$date-picker-input-prefix} {
27 width: 49%;
28
29 &:first-child {
30 margin-right: 2%;
31 }
32 }
33}