Show connectors between parents and children groups
This commit is contained in:
parent
f9f450fd87
commit
07f985bc48
1 changed files with 42 additions and 0 deletions
|
@ -305,5 +305,47 @@ ul.indent-list {
|
|||
margin-bottom: 0;
|
||||
margin-left: 20px;
|
||||
border-top: solid 1px $border-white-light;
|
||||
position: relative;
|
||||
|
||||
&:before {
|
||||
content: '';
|
||||
display: block;
|
||||
width: 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: -16px;
|
||||
border-left: 2px solid $border-white-normal;
|
||||
}
|
||||
|
||||
.group-row {
|
||||
position: relative;
|
||||
|
||||
&:before {
|
||||
content: "";
|
||||
display: block;
|
||||
width: 10px;
|
||||
height: 0;
|
||||
border-top: 2px solid $border-white-normal;
|
||||
position: absolute;
|
||||
top: 30px;
|
||||
left: -16px;
|
||||
}
|
||||
|
||||
&:last-child:before {
|
||||
background: white;
|
||||
height: auto;
|
||||
top: 30px;
|
||||
bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.branch-connector {
|
||||
&:after {
|
||||
content: ' ';
|
||||
position: absolute;
|
||||
background-color: red;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue