third part of syncing LCARStrek with Firefox 36 windows theme changes (changeset...
[themes.git] / LCARStrek / browser / devtools / markup-view.css
... / ...
CommitLineData
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
5* {
6 padding: 0;
7 margin: 0;
8}
9
10.more-nodes {
11 padding-left: 16px;
12}
13
14.styleinspector-propertyeditor {
15 border: 1px solid #9C9CFF;
16}
17
18
19/* Selected nodes in the tree should have light selected text.
20 theme-selected doesn't work in this case since the text is a
21 sibling of the class, not a child. */
22.theme-selected ~ .editor,
23.theme-selected ~ .editor .theme-fg-color1,
24.theme-selected ~ .editor .theme-fg-color2,
25.theme-selected ~ .editor .theme-fg-color3,
26.theme-selected ~ .editor .theme-fg-color4,
27.theme-selected ~ .editor .theme-fg-color5,
28.theme-selected ~ .editor .theme-fg-color6,
29.theme-selected ~ .editor .theme-fg-color7 {
30 color: var(--theme-selection-color);
31}
32
33/* In case a node isn't displayed in the page, we fade the syntax highlighting */
34.not-displayed .open,
35.not-displayed .close {
36 opacity: .7;
37}
38
39.tag-line {
40 padding-left: 2px;
41}
42
43/* Preview */
44
45#previewbar {
46 position: fixed;
47 top: 0;
48 right: 0;
49 width: 90px;
50 background: black;
51 border-left: 1px solid;
52 border-bottom: 1px solid;
53 overflow: hidden;
54
55 background: var(--theme-toolbar-background);
56 border-color: var(--theme-splitter-color);
57}
58
59#preview {
60 position: absolute;
61 top: 0;
62 right: 5px;
63 width: 80px;
64 height: 100%;
65 background-image: -moz-element(#root);
66 background-repeat: no-repeat;
67}
68
69#previewbar.hide,
70#previewbar.disabled {
71 display: none;
72}
73
74#viewbox {
75 position: absolute;
76 top: 0;
77 right: 5px;
78 width: 80px;
79 border: 1px dashed #9C9CFF;
80 background: #000000;
81 outline: 1px solid transparent;
82}
83
84/* Events */
85.markupview-events {
86 font-size: 8px;
87 font-weight: bold;
88 line-height: 10px;
89 border-radius: 3px;
90 padding: 0px 2px;
91 -moz-margin-start: 5px;
92 -moz-user-select: none;
93
94 background-color: var(--theme-body-color-alt);
95 color: var(--theme-body-background);
96}