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