You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
@tree-prefix-cls: ~"@{namespace}-tree";
|
|
|
|
|
|
|
|
.@{tree-prefix-cls} {
|
|
|
|
background-color: var(--component-background);
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
|
|
.ant-tree-node-content-wrapper {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.ant-tree-title {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
|
|
padding-right: 10px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
.@{tree-prefix-cls}__action {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__content {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__actions {
|
|
|
|
position: absolute;
|
|
|
|
//top: 2px;
|
|
|
|
right: 3px;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__action {
|
|
|
|
margin-left: 4px;
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-header {
|
|
|
|
border-bottom: 1px solid var(--border-color);
|
|
|
|
}
|
|
|
|
}
|