switch DOM inspector theme files to MPL2 as the original files switched for the theme...
[themes.git] / EarlyBlue / inspector / viewers / dom / dom.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@import url("chrome://inspector/skin");
6
7/* :::::::: node type color coding :::::::: */
8
9treechildren::-moz-tree-cell-text(ACCESSIBLE_NODE) {
10 font-weight: bold;
11}
12
13treechildren::-moz-tree-cell-text(ELEMENT_NODE) {
14 color: #000000;
15}
16
17treechildren::-moz-tree-cell-text(ATTRIBUTE_NODE) {
18 color: #556b2f;
19}
20
21treechildren::-moz-tree-cell-text(CDATA_SECTION_NODE),
22treechildren::-moz-tree-cell-text(TEXT_NODE) {
23 color: #0000AA;
24}
25
26treechildren::-moz-tree-cell-text(COMMENT_NODE) {
27 color: #228b22;
28}
29
30treechildren::-moz-tree-cell-text(DOCUMENT_NODE) {
31 color: #800080;
32}
33
34treechildren::-moz-tree-cell-text(DOCUMENT_TYPE_NODE) {
35 color: #606000;
36}
37
38treechildren::-moz-tree-cell-text(PROCESSING_INSTRUCTION_NODE) {
39 color: #808080;
40}
41
42treechildren::-moz-tree-cell-text(anonymous) {
43 color: #ff0000;
44}
45
46treechildren::-moz-tree-cell-text(selected, focus) {
47 color: #FFFFFF;
48}
49
50/* :::::::: drag and drop insertion indicators :::::::: */
51
52treechildren::-moz-tree-column(dnd-insert-before) {
53 border-left: 2px solid #000000;
54}
55
56treechildren::-moz-tree-column(dnd-insert-after) {
57 border-right: 2px solid #000000;
58}