adjust network panel styling for recent changes
[themes.git] / LCARStrek / browser / devtools / markup-view.css
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 body {
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. */
41 span[tabindex] {
42   display: inline-block;
43   padding: 1px 0;
44 }
45
46 li.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;
63   background-image: url("chrome://global/skin/tree/twisty-closed.gif");
64 }
65
66 .expander[expanded] {
67   background-image: url("chrome://global/skin/tree/twisty-open.gif");
68 }
69
70 .more-nodes {
71   padding-left: 16px;
72 }
73
74 .styleinspector-propertyeditor {
75   border: 1px solid #9C9CFF;
76 }