adjust network panel styling for recent changes
[themes.git] / LCARStrek / browser / devtools / markup-view.css
CommitLineData
c29b709d
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
5* {
6 padding: 0;
7 margin: 0;
8}
9
10body {
c29b709d
RK
11 background-color: #000000;
12 color: #FF9F00;
13}
14
15.tagname {
16 color: #FFCF00;
17}
18
19.attrname {
20 color: #9C9CFF;
21}
22
23.attrvalue {
24 color: #E7ADE7;
25}
26
27.newattr {
28 cursor: pointer;
29}
30
31.comment {
32 color: #8050B0;
33}
34
35.selected {
36 background-color: #008484;
37}
38
39/* Give some padding to focusable elements to match the editor input
40 * that will replace them. */
41span[tabindex] {
42 display: inline-block;
43 padding: 1px 0;
44}
45
46li.container {
47 position: relative;
48 padding: 2px 0 0 2px;
49}
50
51.codebox {
52 padding-left: 14px;
53}
54
55.expander {
56 position: absolute;
57 top: 5px;
58 left: 0;
59 width: 14px;
60 height: 14px;
61 background-repeat: no-repeat;
62 background-position: center;
7bc075b6 63 background-image: url("chrome://global/skin/tree/twisty-closed.gif");
c29b709d
RK
64}
65
66.expander[expanded] {
7bc075b6 67 background-image: url("chrome://global/skin/tree/twisty-open.gif");
c29b709d
RK
68}
69
0142a07b
RK
70.more-nodes {
71 padding-left: 16px;
72}
73
c29b709d
RK
74.styleinspector-propertyeditor {
75 border: 1px solid #9C9CFF;
76}