81 lines
1.4 KiB
SCSS
Raw Normal View History

.organization-tree {
2019-11-25 09:34:12 +09:00
padding: 5px;
.tree-node-closer-container {
position: relative;
// border: 1px dotted grey;
// border-width: 0 0 1px 1px;
.tree-node-closer-top {
width: 15px;
height: 40px;
position: absolute;
border: 1px dotted grey;
border-width: 0 0 1px 1px;
top: -40px;
left: 20px;
}
.tree-node-closer-bottom {
width: 15px;
height: 40px;
position: absolute;
border: 1px dotted grey;
border-width: 0 0 1px 1px;
top: 0px;
left: 20px;
}
.tree-node-closer-bottom[expanded] {
border-width: 0 0 1px 0px;
}
.tree-node-closer-bottom[lastNode] {
border-width: 0 0 1px 0px;
}
}
li {
margin-top: 0;
margin-bottom: 0;
list-style-type: none;
}
2019-11-13 14:48:27 +09:00
2019-11-25 09:34:12 +09:00
// li:last-child {
// border-left: 1px solid white;
// margin-left: -41px;
// }
.tree-has-child {
2019-11-18 13:57:41 +09:00
height: 40px;
min-height: 40px;
li {
display: flex;
2019-11-18 09:15:20 +09:00
align-items: center;
2019-11-18 13:57:41 +09:00
cursor: pointer;
width: 100%;
2019-11-25 09:34:12 +09:00
.tree-node-body {
.tree-node-expand-btn {
background-color: white;
}
}
2019-11-18 09:15:20 +09:00
}
}
2019-11-25 09:34:12 +09:00
.tree-no-child {
2019-11-18 13:57:41 +09:00
height: 40px;
2019-11-25 09:34:12 +09:00
min-height: 40px;
2019-11-18 09:15:20 +09:00
font-size: 13px;
2019-11-18 13:57:41 +09:00
li {
display: flex;
2019-11-18 09:15:20 +09:00
align-items: center;
2019-11-18 13:57:41 +09:00
width: 100%;
height: 100%;
cursor: pointer;
2019-11-13 14:48:27 +09:00
2019-11-25 09:34:12 +09:00
.tree-node-body {
padding-left: 40px;
}
2019-11-13 14:48:27 +09:00
}
}
2019-10-21 13:20:14 +09:00
}