forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathManagedTree.css
More file actions
41 lines (33 loc) · 720 Bytes
/
ManagedTree.css
File metadata and controls
41 lines (33 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
.managed-tree .tree {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
white-space: nowrap;
overflow: auto;
min-width: 100%;
}
.managed-tree .tree button {
display: block;
}
.managed-tree .tree .node {
padding: 2px 3px 2px 3px;
position: relative;
}
.managed-tree .tree .node.focused {
color: white;
background-color: var(--theme-selection-background);
}
html:not([dir="rtl"]) .managed-tree .tree .node > div {
margin-left: 10px;
}
html[dir="rtl"] .managed-tree .tree .node > div {
margin-right: 10px;
}
.managed-tree .tree .node.focused svg {
fill: white;
}
.managed-tree .tree-node button {
position: fixed;
}