2020-03-07 11:45:13 +00:00
|
|
|
@import '../../style/themes/index';
|
2019-01-02 13:01:56 +00:00
|
|
|
@import '../../style/mixins/index';
|
|
|
|
@import '../../button/style/mixin';
|
|
|
|
@import './mixin';
|
2017-12-06 10:54:20 +00:00
|
|
|
|
2019-01-02 13:01:56 +00:00
|
|
|
@search-prefix: ~'@{ant-prefix}-input-search';
|
2017-12-06 10:54:20 +00:00
|
|
|
|
2018-01-15 10:54:26 +00:00
|
|
|
.@{search-prefix} {
|
2021-12-14 15:50:22 +00:00
|
|
|
.@{ant-prefix}-input {
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
border-color: @input-hover-border-color;
|
|
|
|
|
|
|
|
+ .@{ant-prefix}-input-group-addon .@{search-prefix}-button:not(.@{ant-prefix}-btn-primary) {
|
|
|
|
border-left-color: @input-hover-border-color;
|
|
|
|
}
|
2018-09-05 13:28:54 +00:00
|
|
|
}
|
2017-12-06 10:54:20 +00:00
|
|
|
}
|
|
|
|
|
2021-12-14 15:50:22 +00:00
|
|
|
.@{ant-prefix}-input-affix-wrapper {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
2020-03-07 11:45:13 +00:00
|
|
|
|
2021-12-14 15:50:22 +00:00
|
|
|
// fix slight height diff in Firefox:
|
|
|
|
// https://ant.design/components/auto-complete-cn/#components-auto-complete-demo-certain-category
|
|
|
|
.@{ant-prefix}-input-lg {
|
|
|
|
line-height: @line-height-base - 0.0002;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .@{ant-prefix}-input-group {
|
|
|
|
> .@{ant-prefix}-input-group-addon:last-child {
|
|
|
|
left: -1px;
|
2019-03-30 08:06:06 +00:00
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
2017-12-06 10:54:20 +00:00
|
|
|
|
2019-03-30 08:06:06 +00:00
|
|
|
.@{search-prefix}-button {
|
2021-12-14 15:50:22 +00:00
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
border-radius: 0 @border-radius-base @border-radius-base 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.@{search-prefix}-button:not(.@{ant-prefix}-btn-primary) {
|
|
|
|
color: @text-color-secondary;
|
|
|
|
|
|
|
|
&.@{ant-prefix}-btn-loading::before {
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
2019-03-30 08:06:06 +00:00
|
|
|
}
|
2017-12-06 10:54:20 +00:00
|
|
|
}
|
|
|
|
}
|
2021-12-14 15:50:22 +00:00
|
|
|
|
|
|
|
&-button {
|
|
|
|
height: @input-height-base;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-large &-button {
|
|
|
|
height: @input-height-lg;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-small &-button {
|
|
|
|
height: @input-height-sm;
|
|
|
|
}
|
2017-12-06 10:54:20 +00:00
|
|
|
}
|