element-plus/packages/theme-chalk/src/time-select.scss
Hades-li dec5d665a3
Feat/scss (#212)
* 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
2020-08-28 11:09:05 +08:00

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;
}