forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCallSite.css
More file actions
49 lines (40 loc) · 924 Bytes
/
CallSite.css
File metadata and controls
49 lines (40 loc) · 924 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/>. */
.call-site {
background: #f0f9ff;
position: relative;
}
.call-site::before {
content: "";
position: absolute;
width: 100%;
height: calc(100% - 2px);
border-bottom: 2px solid #aed3ef;
}
.call-site-bp {
position: relative;
}
.debug-expression.call-site-bp,
.call-site-bp {
background-color: #fce7e7;
}
.call-site-bp::before {
content: "";
position: absolute;
width: 100%;
height: calc(100% - 2px);
border-bottom: 2px solid red;
}
.theme-dark .call-site {
background-color: #4b5462;
}
.theme-dark .call-site::before {
border-bottom-color: #5f78a4;
}
.theme-dark .call-site-bp {
background-color: #4b3f3f;
}
.theme-dark .call-site-bp::before {
border-bottom-color: #dd4d4d;
}