63 lines
1.1 KiB
SCSS
63 lines
1.1 KiB
SCSS
![]() |
.treeItemWrapper {
|
||
|
&:last-child > .treeItem {
|
||
|
.line.vertical:nth-last-child(3) {
|
||
|
position: relative;
|
||
|
bottom: 9.5px;
|
||
|
height: 20px;
|
||
|
}
|
||
|
.line.vertical:nth-last-child(4) {
|
||
|
position: relative;
|
||
|
bottom: 9.5px;
|
||
|
height: 20px;
|
||
|
}
|
||
|
}
|
||
|
.treeItem {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
&.active {
|
||
|
background-color: #ddf3fb;
|
||
|
}
|
||
|
.line {
|
||
|
flex-shrink: 0;
|
||
|
width: 16px;
|
||
|
height: 1px;
|
||
|
background-color: #000;
|
||
|
&.transparent {
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
&.vertical {
|
||
|
width: 1px;
|
||
|
height: 38px;
|
||
|
&.transparent {
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.collapseBtn {
|
||
|
flex-shrink: 0;
|
||
|
margin: 0px 8px;
|
||
|
width: 20px;
|
||
|
height: 20px;
|
||
|
}
|
||
|
.labelWrapper {
|
||
|
padding: 6px 0px;
|
||
|
.label {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
column-gap: 12px;
|
||
|
padding: 4px 15px;
|
||
|
height: 26px;
|
||
|
box-sizing: border-box;
|
||
|
color: #fff;
|
||
|
font-size: 12px;
|
||
|
background-color: #1dc0e4;
|
||
|
white-space: nowrap;
|
||
|
&.ib {
|
||
|
background-color: #0f3675;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|