forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSvg.css
More file actions
113 lines (96 loc) · 1.55 KB
/
Svg.css
File metadata and controls
113 lines (96 loc) · 1.55 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
.arrow,
.worker,
.refresh,
.shortcut,
.add-button {
fill: var(--theme-splitter-color);
}
.file,
.folder,
.domain {
background-color: var(--theme-splitter-color);
}
.worker,
.folder {
position: relative;
top: 2px;
}
.domain,
.file,
.worker,
.refresh,
.add-button {
position: relative;
top: 1px;
}
.worker svg,
.refresh svg,
.shortcut svg,
.add-button svg {
width: 15px;
}
img.domain,
img.folder {
width: 15px;
height: 15px;
}
img.domain {
mask: url(/images/domain.svg) no-repeat;
}
img.folder {
mask: url(/images/folder.svg) no-repeat;
}
img.file {
mask: url(/images/file.svg) no-repeat;
width: 13px;
height: 13px;
}
img.domain,
img.folder,
img.file {
mask-size: 100%;
margin-inline-end: 5px;
display: inline-block;
}
.refresh svg,
.shortcut svg,
.worker svg {
margin-inline-end: 5px;
}
img.arrow {
mask: url(/images/arrow.svg);
margin-top: 3px;
width: 9px;
height: 9px;
padding-top: 9px;
background: var(--theme-splitter-color);
mask-size: 100%;
display: inline-block;
margin-bottom: 1px;
transform: rotate(-90deg);
transition: transform 0.18s ease;
}
html:not([dir="rtl"]) .arrow svg {
margin-right: 5px;
transform: rotate(-90deg);
}
html[dir="rtl"] .arrow svg {
margin-left: 5px;
transform: rotate(90deg);
}
/* TODO (Amit): html is just for specificity. keep it like this? */
html .arrow.expanded svg {
transform: rotate(0deg);
}
.arrow.hidden {
visibility: hidden;
}
.webpack svg {
width: 15px;
height: 15px;
margin-right: 5px;
vertical-align: sub;
}
.theme-dark .webpack {
opacity: 0.5;
}