Blame view

node_modules/element-ui/packages/theme-chalk/src/date-picker/time-spinner.scss 1.89 KB
2a09d1a4   liuqimichale   添加宜春 天水 宣化
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
  @import "../common/var";
  
  @include b(time-spinner) {
    &.has-seconds {
      .el-time-spinner__wrapper {
        width: 33.3%;
      }
    }
  
    @include e(wrapper) {
      max-height: 190px;
      overflow: auto;
      display: inline-block;
      width: 50%;
      vertical-align: top;
      position: relative;
  
      & .el-scrollbar__wrap:not(.el-scrollbar__wrap--hidden-default) {
        padding-bottom: 15px;
      }
  
      @include when(arrow) {
        box-sizing: border-box;
        text-align: center;
        overflow: hidden;
  
        .el-time-spinner__list {
          transform: translateY(-32px);
        }
  
        .el-time-spinner__item:hover:not(.disabled):not(.active) {
          background: $--color-white;
          cursor: default;
        }
      }
    }
  
    @include e(arrow) {
      font-size: 12px;
      color: $--color-text-secondary;
      position: absolute;
      left: 0;
      width: 100%;
      z-index: $--index-normal;
      text-align: center;
      height: 30px;
      line-height: 30px;
      cursor: pointer;
  
      &:hover {
        color: $--color-primary;
      }
  
      &.el-icon-arrow-up {
        top: 10px;
      }
  
      &.el-icon-arrow-down {
        bottom: 10px;
      }
    }
  
    @include e(input) {
      &.el-input {
        width: 70%;
  
        .el-input__inner {
          padding: 0;
          text-align: center;
        }
      }
    }
  
    @include e(list) {
      padding: 0;
      margin: 0;
      list-style: none;
      text-align: center;
  
      &::after,
      &::before {
        content: '';
        display: block;
        width: 100%;
        height: 80px;
      }
    }
  
    @include e(item) {
      height: 32px;
      line-height: 32px;
      font-size: 12px;
      color: $--color-text-regular;
  
      &:hover:not(.disabled):not(.active) {
        background: $--background-color-base;
        cursor: pointer;
      }
  
      &.active:not(.disabled) {
        color: $--color-text-primary;
        font-weight: bold;
      }
  
      &.disabled {
        color: $--color-text-placeholder;
        cursor: not-allowed;
      }
    }
  }