Blame view

src/styles/components/input.less 2.78 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;
b30250a7   Chavy   fixed: #2219 & Co...
10
11
12
  
          // #2149 & #2219
          line-height: normal
0f822c9b   梁灏   add Input component
13
14
      }
      &-icon {
3c01d81a   梁灏   fixed Modal bug,w...
15
          width: 32px;
12418c6a   梁灏   fixed #74
16
17
          height: @input-height-base;
          line-height: @input-height-base;
0f822c9b   梁灏   add Input component
18
19
20
21
22
          font-size: 16px;
          text-align: center;
          color: @subsidiary-color;
          position: absolute;
          right: 0;
319f5f86   梁灏   fixed #554
23
          z-index: 3;
12418c6a   梁灏   fixed #74
24
      }
f4e462c0   梁灏   #554
25
26
27
      &-hide-icon &-icon{
          display: none;
      }
20766f28   梁灏   update Input
28
29
30
      &-icon-validate{
          display: none;
      }
12418c6a   梁灏   fixed #74
31
  
a73ae72b   梁灏   fixed #2884
32
33
34
35
36
37
38
39
40
41
      &-icon-clear{
          display: none;
      }
  
      &-wrapper:hover{
          .@{input-prefix-cls}-icon-clear{
              display: inline-block;
          }
      }
  
ef090131   梁灏   optimize Input va...
42
      &-icon-normal + &{
77f7bb95   梁灏   add Transfer comp...
43
44
          padding-right: 32px;
      }
f4e462c0   梁灏   #554
45
46
47
48
      // #554
      &-hide-icon &-icon-normal + &{
          padding-right: @input-padding-horizontal;
      }
77f7bb95   梁灏   add Transfer comp...
49
  
12418c6a   梁灏   fixed #74
50
51
52
53
54
55
56
57
58
59
      &-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
60
  
d061790f   Aresn   fixed #1174
61
62
63
          //+ .@{input-prefix-cls} {
          //    padding-right: 24px;
          //}
0f822c9b   梁灏   add Input component
64
      }
42d5412a   梁灏   Input add prop pr...
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
  
      // prefix & suffix
      &-prefix, &-suffix{
          width: 32px;
          height: 100%;
          text-align: center;
          position: absolute;
          left: 0;
          top: 0;
          z-index: 1;
          i{
              font-size: 16px;
              line-height: @input-height-base;
              color: @subsidiary-color;
          }
      }
      &-suffix{
          left: auto;
          right: 0;
      }
      &-wrapper-small &-prefix, &-wrapper-small &-suffix{
          i{
              font-size: 14px;
              line-height: @input-height-small;
          }
      }
      &-wrapper-large &-prefix, &-wrapper-large &-suffix{
          i{
              font-size: 18px;
              line-height: @input-height-large;
          }
      }
  
      &-with-prefix{
          padding-left: 32px;
      }
      &-with-suffix{
          padding-right: 32px;
      }
0f822c9b   梁灏   add Input component
104
105
106
107
  }
  
  .@{input-prefix-cls}-group{
      .input-group(~"@{input-prefix-cls}");
e93f1e9a   梁灏   update some styles
108
109
110
111
112
113
114
115
116
117
118
119
  }
  
  .@{form-item-prefix-cls}-error{
      .@{input-prefix-cls}{
          .input-error;
          &-icon{
              color: @error-color;
          }
      }
      .@{input-prefix-cls}-group{
          .input-group-error;
      }
aa9fc758   梁灏   update Transfer
120
121
122
123
124
125
126
127
      .@{transfer-prefix-cls} {
          .@{input-prefix-cls} {
              .input;
              &-icon{
                  color: @subsidiary-color;
              }
          }
      }
20766f28   梁灏   update Input
128
129
130
131
132
133
  }
  .@{form-item-prefix-cls}-validating{
      .@{input-prefix-cls}{
          &-icon-validate{
              display: inline-block;
          }
ef090131   梁灏   optimize Input va...
134
135
136
          &-icon + .@{input-prefix-cls}{
              padding-right: 32px;
          }
20766f28   梁灏   update Input
137
      }
485a9039   梁灏   fixed #2149
138
  }