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
65
66
67
68
|
}
}
.@{input-prefix-cls}-group{
.input-group(~"@{input-prefix-cls}");
|
e93f1e9a
梁灏
update some styles
|
69
70
71
72
73
74
75
76
77
78
79
80
|
}
.@{form-item-prefix-cls}-error{
.@{input-prefix-cls}{
.input-error;
&-icon{
color: @error-color;
}
}
.@{input-prefix-cls}-group{
.input-group-error;
}
|
aa9fc758
梁灏
update Transfer
|
81
82
83
84
85
86
87
88
|
.@{transfer-prefix-cls} {
.@{input-prefix-cls} {
.input;
&-icon{
color: @subsidiary-color;
}
}
}
|
20766f28
梁灏
update Input
|
89
90
91
92
93
94
|
}
.@{form-item-prefix-cls}-validating{
.@{input-prefix-cls}{
&-icon-validate{
display: inline-block;
}
|
ef090131
梁灏
optimize Input va...
|
95
96
97
|
&-icon + .@{input-prefix-cls}{
padding-right: 32px;
}
|
20766f28
梁灏
update Input
|
98
|
}
|
485a9039
梁灏
fixed #2149
|
99
|
}
|