2019-04-16 21:59:25 +08:00
|
|
|
@import '../../style/themes/index';
|
2018-12-07 20:02:01 +08:00
|
|
|
@import '../../style/mixins/index';
|
|
|
|
@import '../../button/style/mixin';
|
|
|
|
@import './mixin';
|
2016-05-13 11:45:09 +08:00
|
|
|
|
2018-12-07 20:02:01 +08:00
|
|
|
@search-prefix: ~'@{ant-prefix}-input-search';
|
2016-11-24 15:50:31 +08:00
|
|
|
|
2017-09-15 17:03:43 +08:00
|
|
|
.@{search-prefix} {
|
2020-10-13 21:16:20 +08:00
|
|
|
.@{ant-prefix}-input {
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
border-color: @input-hover-border-color;
|
2020-04-21 09:41:09 +08:00
|
|
|
|
2020-10-13 21:16:20 +08:00
|
|
|
+ .@{ant-prefix}-input-group-addon .@{search-prefix}-button:not(.@{ant-prefix}-btn-primary) {
|
|
|
|
border-left-color: @input-hover-border-color;
|
|
|
|
}
|
2020-04-21 09:41:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-24 23:28:24 +08:00
|
|
|
.@{ant-prefix}-input-affix-wrapper {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
2020-10-13 21:16:20 +08: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;
|
2016-11-24 15:50:31 +08:00
|
|
|
}
|
|
|
|
|
2020-10-13 21:16:20 +08:00
|
|
|
> .@{ant-prefix}-input-group {
|
2020-11-23 21:10:07 +08:00
|
|
|
> .@{ant-prefix}-input-group-addon:last-child {
|
2020-10-24 23:28:24 +08:00
|
|
|
left: -1px;
|
2019-02-21 12:08:35 +08:00
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
2019-01-17 16:52:12 +08:00
|
|
|
|
2019-02-21 12:08:35 +08:00
|
|
|
.@{search-prefix}-button {
|
2020-11-25 10:50:50 +08:00
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
2020-10-13 21:16:20 +08:00
|
|
|
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-02-21 12:08:35 +08:00
|
|
|
}
|
2019-01-17 16:52:12 +08:00
|
|
|
}
|
2016-11-24 15:50:31 +08:00
|
|
|
}
|
2020-10-24 23:28:24 +08:00
|
|
|
|
|
|
|
&-button {
|
2020-11-25 10:50:50 +08:00
|
|
|
height: @input-height-base;
|
|
|
|
|
2020-10-24 23:28:24 +08:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
}
|
2020-11-25 10:50:50 +08:00
|
|
|
|
|
|
|
&-large &-button {
|
|
|
|
height: @input-height-lg;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-small &-button {
|
|
|
|
height: @input-height-sm;
|
|
|
|
}
|
2016-11-24 15:50:31 +08:00
|
|
|
}
|