2017-12-19 13:30:58 +00:00
|
|
|
.treeview {
|
2020-09-27 11:39:29 +00:00
|
|
|
border: 1px solid @input-border;
|
|
|
|
.border-radius(@border-radius-small);
|
|
|
|
|
2017-12-20 11:09:31 +00:00
|
|
|
&.inner {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
.empty-text {
|
|
|
|
text-align: center;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2021-02-16 07:21:22 +00:00
|
|
|
color: @text-tertiary-ie;
|
2020-12-19 19:43:19 +00:00
|
|
|
color: @text-tertiary;
|
2020-02-27 10:31:31 +00:00
|
|
|
td {
|
|
|
|
padding: 5px;
|
|
|
|
}
|
2017-12-20 11:09:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-15 16:28:45 +00:00
|
|
|
&:focus {
|
2021-02-16 07:21:22 +00:00
|
|
|
border-color: @border-preview-select-ie;
|
2020-12-19 19:43:19 +00:00
|
|
|
border-color: @border-preview-select;
|
2020-10-15 16:28:45 +00:00
|
|
|
}
|
|
|
|
|
2017-12-20 11:09:31 +00:00
|
|
|
> .item {
|
2017-12-19 13:30:58 +00:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
.box-shadow(none);
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
&:hover,
|
2018-01-25 14:56:57 +00:00
|
|
|
&.over {
|
2021-02-16 07:21:22 +00:00
|
|
|
background-color: @highlight-button-hover-ie;
|
2020-12-19 19:43:19 +00:00
|
|
|
background-color: @highlight-button-hover;
|
2017-12-19 13:30:58 +00:00
|
|
|
}
|
2017-12-21 12:01:37 +00:00
|
|
|
|
2018-01-25 14:56:57 +00:00
|
|
|
&.selected {
|
2021-02-16 07:21:22 +00:00
|
|
|
background-color: @highlight-button-pressed-ie;
|
2020-12-19 19:43:19 +00:00
|
|
|
background-color: @highlight-button-pressed;
|
2021-04-21 14:09:22 +00:00
|
|
|
color: @text-normal-pressed-ie;
|
|
|
|
color: @text-normal-pressed;
|
2018-01-25 14:56:57 +00:00
|
|
|
}
|
|
|
|
|
2017-12-21 12:01:37 +00:00
|
|
|
&.selected .empty {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-12-19 13:30:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tree-item {
|
|
|
|
width: 100%;
|
2017-12-21 10:56:48 +00:00
|
|
|
min-height: 28px;
|
2022-04-15 08:47:56 +00:00
|
|
|
padding: 0px 12px 0 24px;
|
2017-12-19 13:30:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.name {
|
|
|
|
width: 100%;
|
2017-12-21 10:56:48 +00:00
|
|
|
padding: 5px 0;
|
2017-12-19 13:30:58 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2017-12-21 12:01:37 +00:00
|
|
|
|
|
|
|
&.empty {
|
2021-02-16 07:21:22 +00:00
|
|
|
color: @text-tertiary-ie;
|
2020-12-19 19:43:19 +00:00
|
|
|
color: @text-tertiary;
|
2017-12-21 12:01:37 +00:00
|
|
|
font-style: italic;
|
|
|
|
}
|
2017-12-19 13:30:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tree-caret {
|
2017-12-21 10:56:48 +00:00
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
background-position: 3px -270px;
|
2017-12-19 13:30:58 +00:00
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&.up {
|
|
|
|
transform: rotate(270deg);
|
|
|
|
}
|
|
|
|
}
|
2022-02-10 15:15:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.safari {
|
|
|
|
.treeview .name::before {
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
}
|
2017-12-19 13:30:58 +00:00
|
|
|
}
|