Skip to content

Commit

Permalink
fix(pro:transfer): overide transfer tree node selected bg color
Browse files Browse the repository at this point in the history
  • Loading branch information
sallerli1 committed Jan 12, 2023
1 parent 5d604f9 commit 8725d6a
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion packages/pro/transfer/style/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,27 @@
}
}
}
.@{tree-node-prefix} {
&.@{tree-prefix}-blocked .@{tree-node-prefix} {
transition: none;
background-color: @pro-transfer-list-background-color;
&:hover {
background-color: @pro-transfer-list-item-hover-color;
&-content {
background-color: @pro-transfer-list-item-hover-color;
}
}
&-content {
background-color: @pro-transfer-list-background-color;
transition: none;
}

&-active:not(&-disabled),
&-selected:not(&-disabled) {
background-color: @pro-transfer-list-background-color;
&:hover {
background-color: @pro-transfer-list-item-hover-color;
}
}
}
&-close-icon {
padding: @pro-transfer-tree-close-icon-padding;
Expand Down

0 comments on commit 8725d6a

Please sign in to comment.