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