mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
7c4e12f99e
* refactor: feedbackIcon migration * test: update snapshot
17 lines
714 B
Plaintext
17 lines
714 B
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);
|
|
}
|
|
}
|