Blame view

src/styles/mixins/select.less 1.47 KB
c463ab87   梁灏   add Cascader
1
2
3
4
5
6
7
8
9
10
  .select-item(@size-class, @item-class) {
      .@{item-class} {
          margin: 0;
          padding: 7px 16px;
          clear: both;
          color: @text-color;
          font-size: @font-size-small !important;
          white-space: nowrap;
          list-style: none;
          cursor: pointer;
e2645048   jingsam   :fire: remove tra...
11
          transition: background @transition-time @ease-in-out;
c463ab87   梁灏   add Cascader
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
  
          &:hover{
              background: @background-color-select-hover;
          }
  
          &-focus {
              background: @background-color-select-hover;
          }
  
          &-disabled {
              color: @btn-disable-color;
              cursor: @cursor-disabled;
  
              &:hover {
                  color: @btn-disable-color;
                  background-color: #fff;
                  cursor: @cursor-disabled;
              }
          }
  
          &-selected ,&-selected:hover{
              color: #fff;
              background: @selected-color;
          }
  
          &-selected&-focus {
              background: shade(@selected-color, 10%);
          }
ab8aaf95   梁灏   add Dropdown comp...
40
41
42
43
44
45
46
47
  
          &-divided{
              margin-top: 5px;
              border-top: 1px solid @border-color-split;
              &:before{
                  content: '';
                  height: 5px;
                  display: block;
79633f3c   梁灏   update Dropdown
48
                  margin: 0 -16px;
ab8aaf95   梁灏   add Dropdown comp...
49
                  background-color: #fff;
79633f3c   梁灏   update Dropdown
50
51
                  position: relative;
                  top: -7px;
ab8aaf95   梁灏   add Dropdown comp...
52
53
              }
          }
c463ab87   梁灏   add Cascader
54
55
56
57
58
59
      }
  
      .@{size-class}-large .@{item-class} {
          padding: 7px 16px 8px;
          font-size: @font-size-base !important;
      }
e2645048   jingsam   :fire: remove tra...
60
  }