2023-03-30 16:30:04 +08:00

70 lines
1.3 KiB
SCSS

.magic-editor-layer-panel {
background: $--sidebar-content-background-color;
.magic-editor-layer-tree {
padding-top: 48px;
}
.node-content {
flex: 1;
display: flex;
width: 100%;
> div {
width: 8px;
}
> span {
width: calc(100% - 68px);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
> i {
margin-right: 10px;
font-size: 20px;
&.lock {
color: #bbb;
}
}
}
}
.magic-editor-layer-panel,
.magic-editor-layer-panel .el-tree {
background-color: $--sidebar-content-background-color;
color: #313a40;
}
.magic-editor-layer-panel
.el-tree--highlight-current
.el-tree-node.is-current
> .el-tree-node__content {
background-color: $--sidebar-heder-background-color;
color: #fff;
}
.magic-editor-layer-panel .cus-tree-node {
width: 100%;
overflow: hidden;
}
.magic-editor-layer-panel .cus-tree-node-hover {
background-color: $--hover-color;
width: 100%;
}
.magic-editor-layer-panel .el-tree-node:focus > .el-tree-node__content {
background-color: $--sidebar-heder-background-color;
color: #fff;
}
.ui-tree-tip {
width: 100%;
height: 25px;
margin-left: 10px;
background: $--sidebar-content-background-color;
font-style: italic;
color: #555554;
position: absolute;
top: 40px;
left: 0;
z-index: 1;
}