first part of syncing LCARStrek with Firefox 49/50 devtools theme changes
[themes.git] / LCARStrek / devtools / inspector.css
CommitLineData
dc9d5d64
RK
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
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4
1e9e1791
RK
5:root {
6 --eyedropper-image: url(images/command-eyedropper.svg);
7}
8
85b6b932
RK
9window {
10 padding: 0;
11}
12
6f751fd1
RK
13:root.theme-dark {
14 --breadcrumbs-border-color: #9C9CFF;
15}
16
1e9e1791
RK
17/* Use flex layout for the Inspector toolbar. For now, it's done
18 specifically for the Inspector toolbar since general rule applied
19 on .devtools-toolbar breaks breadcrubs and also toolbars in other
20 panels (e.g. webconsole, debugger), these are not ready for HTML
21 layout yet. */
6f751fd1 22#inspector-toolbar.devtools-toolbar {
1e9e1791 23 display: flex;
1e9e1791
RK
24}
25
6f751fd1 26#inspector-toolbar.devtools-toolbar .devtools-toolbar-spacer {
1e9e1791
RK
27 flex-grow: 1;
28 display: inline-block;
29}
30
dc9d5d64
RK
31#inspector-searchlabel {
32 overflow: hidden;
33}
34
6f751fd1
RK
35/* Make sure the text is vertically centered in Inspector's
36 search box. This can be removed when the search box is
37 switched to HTML.
38 See also: https://bugzilla.mozilla.org/show_bug.cgi?id=1265759 */
39#inspector-searchbox {
40 line-height: 19px;
41}
42
dc9d5d64
RK
43#inspector-breadcrumbs-toolbar {
44 padding: 0px;
45 border-bottom-width: 0px;
46 border-top-width: 1px;
6f751fd1
RK
47 border-top-color: var(--breadcrumbs-border-color);
48 /* Bug 1262668 - Use the same background as the body so the breadcrumbs toolbar doesn't
49 get mistaken as a splitter */
50 background-color: var(--theme-body-background);
51 display: block;
52 position: relative;
dc9d5d64
RK
53}
54
6f751fd1
RK
55#inspector-breadcrumbs-toolbar,
56#inspector-breadcrumbs-toolbar * {
57 box-sizing: border-box;
1e9e1791
RK
58}
59
6f751fd1
RK
60#inspector-breadcrumbs {
61 display: flex;
62 /* Break out of the XUL flexbox, so the splitter can still shrink the
63 markup view even if the contents of the breadcrumbs are wider than
64 the new width. */
1e9e1791
RK
65 position: absolute;
66 top: 0;
1e9e1791 67 left: 0;
6f751fd1 68 bottom: 0;
1e9e1791
RK
69 right: 0;
70}
71
6f751fd1
RK
72#inspector-breadcrumbs .scrollbutton-up,
73#inspector-breadcrumbs .scrollbutton-down {
74 flex: 0;
dc9d5d64
RK
75 display: flex;
76 align-items: center;
dc9d5d64
RK
77}
78
6f751fd1
RK
79#inspector-breadcrumbs .html-arrowscrollbox-inner {
80 flex: 1;
81 display: flex;
dc9d5d64 82 overflow: hidden;
dc9d5d64
RK
83}
84
6f751fd1
RK
85#inspector-breadcrumbs .breadcrumbs-widget-item {
86 white-space: nowrap;
87 flex-shrink: 0;
88 font: message-box;
dc9d5d64
RK
89}
90
6f751fd1
RK
91#inspector-eyedropper-toggle {
92 /* hidden by default, until we can check that the required highlighter exists */
93 display: none;
dc9d5d64
RK
94}
95
6f751fd1
RK
96#inspector-eyedropper-toggle::before {
97 background-image: var(--eyedropper-image);
dc9d5d64
RK
98}
99
6f751fd1
RK
100/* Add element toolbar button */
101#inspector-element-add-button::before {
102 background-image: url("chrome://devtools/skin/images/add.svg");
103 list-style-image: url("chrome://devtools/skin/images/add.svg");
104 -moz-user-focus: normal;
dc9d5d64
RK
105}
106
6f751fd1 107/* "no results" warning message displayed in the ruleview and in the computed view */
dc9d5d64 108
6f751fd1
RK
109#ruleview-no-results,
110#computedview-no-results {
111 color: var(--theme-body-color-inactive);
112 text-align: center;
113 margin: 5px;
dc9d5d64 114}