78 lines
1.4 KiB
Plaintext
78 lines
1.4 KiB
Plaintext
.umb-tree-item {
|
|
display: block;
|
|
min-width: 100%;
|
|
width: auto;
|
|
|
|
.umb-tree-item__label {
|
|
user-select: none;
|
|
}
|
|
|
|
&:hover ins {
|
|
visibility: visible;
|
|
cursor: pointer
|
|
}
|
|
}
|
|
|
|
.umb-tree-item > .umb-tree-item__inner {
|
|
|
|
&:hover .umb-tree-item__label {
|
|
overflow: hidden;
|
|
margin-right: 6px;
|
|
}
|
|
|
|
// Loading Animation
|
|
// ------------------------
|
|
.l {
|
|
width: 100%;
|
|
height: 2px;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: -1;
|
|
|
|
div {
|
|
.umb-loader;
|
|
}
|
|
}
|
|
|
|
.umb-tree-item__label {
|
|
padding: 7px 0 5px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
flex: 1 0 auto;
|
|
}
|
|
}
|
|
|
|
.umb-tree-item.current > .umb-tree-item__inner {
|
|
|
|
background: @ui-active;
|
|
color:@ui-active-type;
|
|
|
|
// override small icon color. TODO => check usage
|
|
&:before {
|
|
color: @blue;
|
|
}
|
|
|
|
.umb-options {
|
|
|
|
&:hover i {
|
|
opacity: .7;
|
|
}
|
|
|
|
i {
|
|
background: @ui-active-type;
|
|
//border-color: @ui-active;
|
|
transition: opacity 120ms ease;
|
|
}
|
|
}
|
|
|
|
a,
|
|
.umb-tree-icon,
|
|
ins {
|
|
color: @ui-active-type !important;
|
|
//background-color: @ui-active;
|
|
//border-color: @ui-active;
|
|
}
|
|
}
|