mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-13 07:16:04 +00:00
34 lines
607 B
SCSS
34 lines
607 B
SCSS
//
|
|
// date-picker 样式
|
|
//
|
|
#{$date-picker-prefix},
|
|
#{$month-picker-prefix},
|
|
#{$year-picker-prefix},
|
|
#{$week-picker-prefix} {
|
|
display: inline-block;
|
|
width: $s-50;
|
|
|
|
&-input {
|
|
width: 100%;
|
|
}
|
|
|
|
&-body {
|
|
width: $s-18 * 4;
|
|
}
|
|
|
|
&-panel-input#{$date-picker-input-prefix} {
|
|
width: 100%;
|
|
background: $color-transparent;
|
|
}
|
|
}
|
|
|
|
#{$date-picker-prefix}-body#{$date-picker-prefix}-body-show-time {
|
|
#{$date-picker-prefix}-panel-input#{$date-picker-input-prefix} {
|
|
width: 49%;
|
|
|
|
&:first-child {
|
|
margin-right: 2%;
|
|
}
|
|
}
|
|
}
|