forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSourceIcon.css
More file actions
41 lines (35 loc) · 840 Bytes
/
SourceIcon.css
File metadata and controls
41 lines (35 loc) · 840 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
.source-icon {
position: relative;
background-color: var(--theme-comment);
mask-size: 100%;
display: inline-block;
margin-inline-end: 5px;
}
.source-icon,
.source-icon svg {
width: 15px;
height: 15px;
}
.source-icon.prettyPrint {
mask: url(/images/prettyPrint.svg) no-repeat;
mask-size: 100%;
background: var(--theme-highlight-blue);
fill: var(--theme-textbox-box-shadow);
}
.source-icon.vue {
background: url(/images/vuejs.svg) 1px 1px no-repeat;
background-size: 15px;
}
.source-icon.angular {
background: url(/images/angular.svg) 1px 1px no-repeat;
background-size: 13px 13px;
}
.source-icon.blackBox {
mask: url(/images/blackBox.svg) no-repeat;
mask-size: 100%;
background: var(--theme-highlight-blue);
}
.source-icon.react {
mask-size: 100%;
background: var(--theme-highlight-bluegrey);
}