mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 18:01:24 +08:00
dec5d665a3
* feat: change to import scss Change the import css to import scss to facilitate style modification * fix: fixed: storybook support scss file fixed: storybook support scss file * chore: remove redundant code in webpack.config.js Remove redundant code in webpack.config.js
38 lines
664 B
SCSS
38 lines
664 B
SCSS
@import "common/var";
|
|
@import "./date-picker/picker.scss";
|
|
@import "./date-picker/date-picker.scss";
|
|
@import "./scrollbar.scss";
|
|
@import "./popper";
|
|
|
|
.time-select {
|
|
margin: 5px 0;
|
|
min-width: 0;
|
|
}
|
|
|
|
.time-select .el-picker-panel__content {
|
|
max-height: 200px;
|
|
margin: 0;
|
|
}
|
|
|
|
.time-select-item {
|
|
padding: 8px 10px;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.time-select-item.selected:not(.disabled) {
|
|
color: $--color-primary;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.time-select-item.disabled {
|
|
color: $--datepicker-border-color;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.time-select-item:hover {
|
|
background-color: $--background-color-base;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
}
|