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
143 lines (120 loc) · 2.04 KB
/
Svg.css
File metadata and controls
143 lines (120 loc) · 2.04 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/* 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/>. */
.arrow,
.worker,
.refresh,
.shortcut,
.add-button {
fill: var(--theme-splitter-color);
}
.file,
.folder,
.domain {
background-color: var(--theme-comment);
}
.worker,
.file,
.folder {
position: relative;
top: 2px;
}
.domain,
.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-inline-end: 5px;
margin-top: 3px;
width: 9px;
height: 9px;
padding-top: 9px;
background: var(--disclosure-arrow);
mask-size: 100%;
display: inline-block;
margin-bottom: 1px;
transform: rotate(-90deg);
transition: transform 0.18s ease;
}
html[dir="ltr"] img.arrow {
transform: rotate(-90deg);
}
html[dir="rtl"] img.arrow {
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;
}
.function svg {
height: 10px;
width: 15px;
}
.function path {
fill: var(--theme-body-color);
}
.angular svg,
.source-icon svg {
width: 15px;
height: 15px;
margin-right: 5px;
vertical-align: sub;
}
.angular,
.webpack {
opacity: 0.8;
}
.theme-dark .angular,
.theme-dark .webpack {
opacity: 0.5;
}
.source-icon svg {
fill: var(--theme-comment);
}