Bug 1880488 [wpt PR 44609] - Update wpt metadata, a=testonly
[gecko.git] / devtools / client / themes / components-frame.css
blobf647f68a7f1d79f2bdfeb6e451b2fb656ea18bfa
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
3 * You can obtain one at http://mozilla.org/MPL/2.0/. */
5 /**
6 * Frame Component
7 * Styles for React component at `devtools/client/shared/components/Frame.js`
8 */
10 .theme-light {
11 --frame-link-line-color: var(--theme-link-color);
12 --frame-link-source: var(--theme-highlight-purple);
15 .theme-dark {
16 --frame-link-line-color: hsl(210, 40%, 60%);
17 --frame-link-source: var(--blue-40);
20 .stack-trace {
21 display: grid;
22 grid-template-columns: auto auto;
23 justify-content: start;
26 .stack-trace .frame-link-async-cause {
27 grid-column: 1 / -1;
30 .stack-trace .frame-link {
31 display: contents;
34 .frame-link-async-cause {
35 color: var(--theme-comment);
38 .frame-link .frame-link-source {
39 color: var(--frame-link-source);
42 .frame-link a.frame-link-source {
43 cursor: pointer;
44 text-decoration: underline;
45 text-decoration-skip-ink: none;
46 font-style: normal;
49 .frame-link .frame-link-host {
50 margin-inline-start: 5px;
51 font-size: 90%;
52 color: var(--theme-comment);
55 .frame-link .frame-link-function-display-name {
56 margin-inline-end: 5px;
57 color: var(--console-output-color, currentColor);
60 .frame-link .frame-link-line {
61 color: var(--frame-link-line-color);
64 .focused .frame-link .frame-link-source,
65 .focused .frame-link .frame-link-line,
66 .focused .frame-link .frame-link-host {
67 color: var(--theme-selection-color);