Blame view

src/styles/components/input.less 1.52 KB
0f822c9b   梁灏   add Input component
1
2
3
4
5
6
7
8
  @input-prefix-cls: ~"@{css-prefix}input";
  
  .@{input-prefix-cls} {
      .input;
      &-wrapper{
          display: inline-block;
          width: 100%;
          position: relative;
8a83e7c4   梁灏   update Form
9
          vertical-align: middle;
0f822c9b   梁灏   add Input component
10
11
      }
      &-icon {
3c01d81a   梁灏   fixed Modal bug,w...
12
          width: 32px;
12418c6a   梁灏   fixed #74
13
14
          height: @input-height-base;
          line-height: @input-height-base;
0f822c9b   梁灏   add Input component
15
16
17
18
19
20
          font-size: 16px;
          text-align: center;
          color: @subsidiary-color;
          position: absolute;
          right: 0;
          z-index: 1;
12418c6a   梁灏   fixed #74
21
      }
20766f28   梁灏   update Input
22
23
24
      &-icon-validate{
          display: none;
      }
12418c6a   梁灏   fixed #74
25
  
77f7bb95   梁灏   add Transfer comp...
26
27
28
29
      &-icon + &{
          padding-right: 32px;
      }
  
12418c6a   梁灏   fixed #74
30
31
32
33
34
35
36
37
38
39
      &-wrapper-large &-icon{
          font-size: 18px;
          height: @input-height-large;
          line-height: @input-height-large;
      }
      &-wrapper-small &-icon{
          width: 24px;
          font-size: 14px;
          height: @input-height-small;
          line-height: @input-height-small;
0f822c9b   梁灏   add Input component
40
  
77f7bb95   梁灏   add Transfer comp...
41
42
43
          + .@{input-prefix-cls} {
              padding-right: 24px;
          }
0f822c9b   梁灏   add Input component
44
45
46
47
48
      }
  }
  
  .@{input-prefix-cls}-group{
      .input-group(~"@{input-prefix-cls}");
e93f1e9a   梁灏   update some styles
49
50
51
52
53
54
55
56
57
58
59
60
  }
  
  .@{form-item-prefix-cls}-error{
      .@{input-prefix-cls}{
          .input-error;
          &-icon{
              color: @error-color;
          }
      }
      .@{input-prefix-cls}-group{
          .input-group-error;
      }
aa9fc758   梁灏   update Transfer
61
62
63
64
65
66
67
68
      .@{transfer-prefix-cls} {
          .@{input-prefix-cls} {
              .input;
              &-icon{
                  color: @subsidiary-color;
              }
          }
      }
20766f28   梁灏   update Input
69
70
71
72
73
74
75
  }
  .@{form-item-prefix-cls}-validating{
      .@{input-prefix-cls}{
          &-icon-validate{
              display: inline-block;
          }
      }
0f822c9b   梁灏   add Input component
76
  }