X-Git-Url: https://git-public.kairo.at/?p=themes.git;a=blobdiff_plain;f=EarlyBlue%2Finspector%2Fviewers%2Fdom%2Fdom.css;h=303fa512c343d72ccca8eb740905f8b88d92504d;hp=a55b76f7c4faa9eaded084bddebcf3687f513b22;hb=7b0f9e888cd6206d3b964da646e5b9a83a0d9516;hpb=322edebde97a18dcffe4a560645025fa53c3443c diff --git a/EarlyBlue/inspector/viewers/dom/dom.css b/EarlyBlue/inspector/viewers/dom/dom.css index a55b76f7..303fa512 100644 --- a/EarlyBlue/inspector/viewers/dom/dom.css +++ b/EarlyBlue/inspector/viewers/dom/dom.css @@ -1,84 +1,58 @@ -/* ***** BEGIN LICENSE BLOCK ***** - * Version: NPL 1.1/GPL 2.0/LGPL 2.1 - * - * The contents of this file are subject to the Netscape Public License - * Version 1.1 (the "License"); you may not use this file except in - * compliance with the License. You may obtain a copy of the License at - * http://www.mozilla.org/NPL/ - * - * Software distributed under the License is distributed on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License - * for the specific language governing rights and limitations under the - * License. - * - * The Original Code is mozilla.org code. - * - * The Initial Developer of the Original Code is - * Netscape Communications Corporation. - * Portions created by the Initial Developer are Copyright (C) 2001 - * the Initial Developer. All Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (original author) - * Robert Kaiser - * - * Alternatively, the contents of this file may be used under the terms of - * either the GNU General Public License Version 2 or later (the "GPL"), or - * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), - * in which case the provisions of the GPL or the LGPL are applicable instead - * of those above. If you wish to allow use of your version of this file only - * under the terms of either the GPL or the LGPL, and not to allow others to - * use your version of this file under the terms of the NPL, indicate your - * decision by deleting the provisions above and replace them with the notice - * and other provisions required by the GPL or the LGPL. If you do not delete - * the provisions above, a recipient may use your version of this file under - * the terms of any one of the NPL, the GPL or the LGPL. - * - * ***** END LICENSE BLOCK ***** */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ @import url("chrome://inspector/skin"); /* :::::::: node type color coding :::::::: */ -treechildren:-moz-tree-cell-text(ELEMENT_NODE) { +treechildren::-moz-tree-cell-text(ACCESSIBLE_NODE) { + font-weight: bold; +} + +treechildren::-moz-tree-cell-text(ELEMENT_NODE) { color: #000000; } -treechildren:-moz-tree-cell-text(ATTRIBUTE_NODE) { +treechildren::-moz-tree-cell-text(ATTRIBUTE_NODE) { color: #556b2f; } -treechildren:-moz-tree-cell-text(CDATA_SECTION_NODE), -treechildren:-moz-tree-cell-text(TEXT_NODE) { +treechildren::-moz-tree-cell-text(CDATA_SECTION_NODE), +treechildren::-moz-tree-cell-text(TEXT_NODE) { color: #0000AA; } -treechildren:-moz-tree-cell-text(COMMENT_NODE) { +treechildren::-moz-tree-cell-text(COMMENT_NODE) { color: #228b22; } -treechildren:-moz-tree-cell-text(DOCUMENT_NODE) { +treechildren::-moz-tree-cell-text(DOCUMENT_NODE) { color: #800080; } -treechildren:-moz-tree-cell-text(PROCESSING_INSTRUCTION_NODE) { +treechildren::-moz-tree-cell-text(DOCUMENT_TYPE_NODE) { + color: #606000; +} + +treechildren::-moz-tree-cell-text(PROCESSING_INSTRUCTION_NODE) { color: #808080; } -treechildren:-moz-tree-cell-text(anonymous) { +treechildren::-moz-tree-cell-text(anonymous) { color: #ff0000; } -treechildren:-moz-tree-cell-text(selected, focus) { +treechildren::-moz-tree-cell-text(selected, focus) { color: #FFFFFF; } /* :::::::: drag and drop insertion indicators :::::::: */ -treechildren:-moz-tree-column(dnd-insert-before) { +treechildren::-moz-tree-column(dnd-insert-before) { border-left: 2px solid #000000; } -treechildren:-moz-tree-column(dnd-insert-after) { +treechildren::-moz-tree-column(dnd-insert-after) { border-right: 2px solid #000000; }