third and last part of syncing LCARStrek with Firefox 52 browser windows theme changes
[themes.git] / LCARStrek / devtools / components-frame.css
CommitLineData
7d6161c5
RK
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 {
7d6161c5 12 display: flex;
6f751fd1
RK
13 justify-content: space-between;
14}
15
16.frame-link-async-cause {
17 color: var(--theme-body-color-inactive);
7d6161c5
RK
18}
19
20.frame-link .frame-link-source {
6f751fd1
RK
21 flex: initial;
22 color: var(--theme-highlight-blue);
7d6161c5 23}
6f751fd1 24
7d6161c5
RK
25.frame-link a.frame-link-source {
26 cursor: pointer;
27 text-decoration: none;
6f751fd1 28 font-style: normal;
7d6161c5 29}
6f751fd1 30
7d6161c5
RK
31.frame-link a.frame-link-source:hover {
32 text-decoration: underline;
33}
34
7d6161c5
RK
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
6f751fd1 45.frame-link .frame-link-line {
7d6161c5 46 color: var(--theme-highlight-orange);
7d6161c5
RK
47}
48
6f751fd1 49.focused .frame-link .frame-link-source,
7d6161c5 50.focused .frame-link .frame-link-line,
6f751fd1 51.focused .frame-link .frame-link-host {
7d6161c5
RK
52 color: var(--theme-selection-color);
53}