first part of syncing LCARStrek with Firefox 49/50 devtools theme changes
[themes.git] / LCARStrek / devtools / components-frame.css
... / ...
CommitLineData
1/* vim:set ts=2 sw=2 sts=2 et: */
2/* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
4 * You can obtain one at http://mozilla.org/MPL/2.0/. */
5
6/**
7 * Frame Component
8 * Styles for React component at `devtools/client/shared/components/frame.js`
9 */
10
11.frame-link {
12 display: flex;
13 justify-content: space-between;
14}
15
16.frame-link-async-cause {
17 color: var(--theme-body-color-inactive);
18}
19
20.frame-link .frame-link-source {
21 flex: initial;
22 color: var(--theme-highlight-blue);
23}
24
25.frame-link a.frame-link-source {
26 cursor: pointer;
27 text-decoration: none;
28 font-style: normal;
29}
30
31.frame-link a.frame-link-source:hover {
32 text-decoration: underline;
33}
34
35.frame-link .frame-link-host {
36 margin-inline-start: 5px;
37 font-size: 90%;
38 color: var(--theme-content-color2);
39}
40
41.frame-link .frame-link-function-display-name {
42 margin-inline-end: 5px;
43}
44
45.frame-link .frame-link-line {
46 color: var(--theme-highlight-orange);
47}
48
49.focused .frame-link .frame-link-source,
50.focused .frame-link .frame-link-line,
51.focused .frame-link .frame-link-host {
52 color: var(--theme-selection-color);
53}