mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-17 10:28:06 +08:00
2c88f606c3
* fix: remove duplicated style * chore: reduce bundle size limitation * chore: raise bundle size
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
@import '../../input/style/mixin';
|
|
|
|
@mention-prefix-cls: ~'@{ant-prefix}-mentions';
|
|
@input-prefix-cls: ~'@{ant-prefix}-input';
|
|
|
|
.@{mention-prefix-cls} {
|
|
&-status-error {
|
|
.status-color(@mention-prefix-cls, @error-color, @error-color, @input-bg, @error-color-hover, @error-color-outline);
|
|
.status-color-common(@input-prefix-cls, @error-color, @error-color, @input-bg, @error-color-hover, @error-color-outline);
|
|
}
|
|
|
|
&-status-warning {
|
|
.status-color(@mention-prefix-cls, @warning-color, @warning-color, @input-bg, @warning-color-hover, @warning-color-outline);
|
|
.status-color-common(@input-prefix-cls, @warning-color, @warning-color, @input-bg, @warning-color-hover, @warning-color-outline);
|
|
}
|
|
|
|
&-affix-wrapper {
|
|
position: relative;
|
|
|
|
.@{mention-prefix-cls}-feedback-icon {
|
|
position: absolute;
|
|
top: 0;
|
|
right: @input-padding-horizontal-base;
|
|
bottom: 0;
|
|
z-index: 1;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
margin: auto;
|
|
}
|
|
|
|
&-status-error {
|
|
.@{mention-prefix-cls}-feedback-icon {
|
|
color: @error-color;
|
|
}
|
|
}
|
|
|
|
&-has-warning {
|
|
.@{mention-prefix-cls}-feedback-icon {
|
|
color: @warning-color;
|
|
}
|
|
}
|
|
}
|
|
}
|