mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-03 04:27:41 +08:00
32 lines
514 B
Plaintext
32 lines
514 B
Plaintext
@import '../../input/style/mixin';
|
|
|
|
@transfer-prefix-cls: ~'@{ant-prefix}-transfer';
|
|
|
|
.transfer-status-color(@color) {
|
|
.@{transfer-prefix-cls}-list {
|
|
border-color: @color;
|
|
|
|
&-search:not([disabled]) {
|
|
border-color: @input-border-color;
|
|
|
|
&:hover {
|
|
.hover();
|
|
}
|
|
|
|
&:focus {
|
|
.active();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.@{transfer-prefix-cls} {
|
|
&-status-error {
|
|
.transfer-status-color(@error-color);
|
|
}
|
|
|
|
&-status-warning {
|
|
.transfer-status-color(@warning-color);
|
|
}
|
|
}
|