Blame view

src/styles/mixins/common.less 806 Bytes
95436eeb   梁灏   add InputNumber UI
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  .placeholder(@color: @input-placeholder-color) {
      // Firefox
      &::-moz-placeholder {
          color: @color;
          opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526
      }
      // Internet Explorer 10+
      &:-ms-input-placeholder {
          color: @color;
      }
      // Safari and Chrome
      &::-webkit-input-placeholder {
          color: @color;
      }
69576f47   梁灏   add Slider component
15
16
17
18
19
20
  }
  
  .user-select(@type: none) {
      -webkit-user-select: @type;
      -moz-user-select: @type;
      user-select: @type;
165bb7c9   梁灏   update Cascader
21
22
23
24
25
26
27
28
29
30
31
32
  }
  
  // for select and input like component's arrow
  .inner-arrow() {
      position: absolute;
      top: 50%;
      right: 8px;
      line-height: 1;
      margin-top: -7px;
      font-size: @font-size-base;
      color: @subsidiary-color;
      .transition(all @transition-time @ease-in-out);
95436eeb   梁灏   add InputNumber UI
33
  }