Blame view

src/styles/components/cascader.less 1.89 KB
c463ab87   梁灏   add Cascader
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
  @cascader-prefix-cls: ~"@{css-prefix}cascader";
  @cascader-item-prefix-cls: ~"@{css-prefix}cascader-menu-item";
  
  .@{cascader-prefix-cls} {
      position: relative;
  
      .@{css-prefix}input{
          display: block;
          cursor: pointer;
      }
  
      .@{cascader-prefix-cls}-arrow:nth-of-type(1) {
          display: none;
          cursor: pointer;
      }
  
      &:hover {
          .@{cascader-prefix-cls}-arrow:nth-of-type(1) {
              display: inline-block;
          }
      }
      &-show-clear:hover .@{cascader-prefix-cls}-arrow:nth-of-type(2){
          display: none;
      }
  
      &-arrow {
          position: absolute;
          top: 50%;
          right: 8px;
          line-height: 1;
          margin-top: -6px;
          font-size: @font-size-base;
          color: @subsidiary-color;
          .transition(all @transition-time @ease-in-out);
      }
  
      .@{select-dropdown-prefix-cls} {
          padding: 0;
          white-space: nowrap;
      }
  
      .select-item(@cascader-prefix-cls, @cascader-item-prefix-cls);
  
      &-menu{
          display: inline-block;
          min-width: 100px;
          height: 180px;
          margin: 0;
          padding: 5px 0;
          vertical-align: top;
          list-style: none;
          border-right: 1px solid @border-color-split;
          overflow: auto;
  
          &:first-child {
  
          }
          &:last-child {
              border-right-color: transparent;
              margin-right: -1px;
          }
          &:only-child {
  
          }
  
          & &-item{
              position: relative;
              padding-right: 24px;
              .transition(all @transition-time @ease-in-out);
  
              i{
                  font-size: @font-size-small;
                  position: absolute;
                  right: 15px;
                  top: 50%;
                  margin-top: -6px;
              }
  
              &-active{
                  background-color: @background-color-select-hover;
                  font-weight: bold;
              }
          }
      }
  }