You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design/components/input/style/search-input.less

32 lines
671 B
Plaintext

@import "../../style/themes/default";
@import "../../style/mixins/index";
@import "../../button/style/mixin";
@import "./mixin";
.@{ant-prefix}-input-search-wrapper {
display: inline-block;
position: relative;
.@{ant-prefix}-input-search {
transition: all .3s ease;
&-icon {
position: absolute;
right: 8px;
cursor: pointer;
transition: all .3s ease;
font-size: 14px;
height: 20px;
line-height: 20px;
top: 50%;
margin-top: -10px;
&:hover {
color: @input-hover-border-color;
}
}
}
&:hover .@{ant-prefix}-input-search {
border: 1px solid @input-hover-border-color;
}
}