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