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
49 lines (39 loc) · 1000 Bytes
/
ManagedTree.css
File metadata and controls
49 lines (39 loc) · 1000 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
42
43
44
45
46
47
48
49
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */
.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%;
display: grid;
grid-template-columns: 1fr;
align-content: start;
}
.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;
}