You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
frontend/src/app/components/tree-root/tree-root.component.scss

39 lines
508 B

.container {
display: flex;
flex-direction: column;
}
.nested-level {
margin-left: 20px;
}
.item {
padding: 10px;
border-bottom: 1px solid #cccccc;
border-left: 1px solid #cccccc;
user-select: none;
i {
padding-right: 10px;
&.handle {
color: #888888;
}
}
&:hover, &.activated {
background-color: #f0f0f0;
cursor: pointer;
}
}
.container.dark {
.item {
border-color: #555555;
&:hover, &.activated {
background-color: #333333;
}
}
}