iview/src/styles/components/input.less

45 lines
950 B
Text
Raw Normal View History

@input-prefix-cls: ~"@{css-prefix}input";
.@{input-prefix-cls} {
.input;
&-wrapper{
display: inline-block;
width: 100%;
position: relative;
}
&-icon {
width: 32px;
2016-11-11 15:35:26 +08:00
height: @input-height-base;
line-height: @input-height-base;
font-size: 16px;
text-align: center;
color: @subsidiary-color;
position: absolute;
right: 0;
z-index: 1;
2016-11-11 15:35:26 +08:00
}
&-icon + &{
padding-right: 32px;
}
2016-11-11 15:35:26 +08:00
&-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;
+ .@{input-prefix-cls} {
padding-right: 24px;
}
}
}
.@{input-prefix-cls}-group{
.input-group(~"@{input-prefix-cls}");
}