保誠-保戶業務員媒合平台
tomasysh
2025-01-02 4efb98f2b554b76270b12837db7a7f724e2ede89
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
@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;
}