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