53 lines
834 B
53 lines
834 B
2 years ago
|
@tree-prefix-cls: ~'@{namespace}-tree';
|
||
|
|
||
|
.@{tree-prefix-cls} {
|
||
|
background-color: @component-background;
|
||
|
|
||
|
.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 @border-color-base;
|
||
|
}
|
||
|
}
|