You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
775 B

@import '../../style/themes/index';
@import '../../style/mixins/index';
@import '../../button/style/mixin';
@import './mixin';
@search-prefix: ~'@{ant-prefix}-input-search';
.@{search-prefix} {
&-icon {
color: @text-color-secondary;
cursor: pointer;
transition: all 0.3s;
&:hover {
& when (@theme = dark) {
color: fade(@white, 85%);
}
& when not (@theme = dark) {
color: fade(@black, 85%);
}
}
}
6 years ago
&-enter-button {
6 years ago
input {
border-right: 0;
}
& + .@{ant-prefix}-input-group-addon,
6 years ago
input + .@{ant-prefix}-input-group-addon {
6 years ago
padding: 0;
border: 0;
6 years ago
.@{search-prefix}-button {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
}
}
}