ant-design-vue/components/transfer/style/status.less
2022-05-22 10:35:19 +08:00

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);
}
}