From: Robert Kaiser Date: Fri, 2 Dec 2011 23:21:42 +0000 (+0100) Subject: add devtools directory, missed last time X-Git-Tag: LCARStrek-2.6~3 X-Git-Url: https://git-public.kairo.at/?p=themes.git;a=commitdiff_plain;h=da9978ec3917609e166ae86222ca96cc556b43d8;ds=sidebyside add devtools directory, missed last time --- diff --git a/LCARStrek/browser/devtools/arrows.png b/LCARStrek/browser/devtools/arrows.png new file mode 100644 index 00000000..83ec0cc0 Binary files /dev/null and b/LCARStrek/browser/devtools/arrows.png differ diff --git a/LCARStrek/browser/devtools/csshtmltree.css b/LCARStrek/browser/devtools/csshtmltree.css new file mode 100644 index 00000000..f7f23638 --- /dev/null +++ b/LCARStrek/browser/devtools/csshtmltree.css @@ -0,0 +1,186 @@ +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1/GPL 2.0/LGPL 2.1 + * + * The contents of this file are subject to the Mozilla 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/MPL/ + * + * 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 the Mozilla Inspector Module. + * + * The Initial Developer of the Original Code is + * The Mozilla Foundation. + * Portions created by the Initial Developer are Copyright (C) 2011 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Joe Walker (original author) + * Mihai Șucan + * Michael Ratcliffe + * + * 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 MPL, 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 MPL, the GPL or the LGPL. + * + * ***** END LICENSE BLOCK ***** */ + +body { + font-family: "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif; + font-size: 11px; + background: #000000; +} +.path, +.filters { + font-size: 11px; + word-spacing: -1px; +} +.path ol { + list-style: none outside none; + margin: 0; + padding: 0; +} +.path li { + border-radius: 3px; + padding: 2px 3px; + font-weight: bold; + font-size: 11px; + display: inline-block; +} +.path li:after { + content: " > "; +} +.path li:last-child { +} +.path li:last-child:after { + color: red; + content: ""; +} + +.property-header { + padding: 2px 5px; + color: #9C9CFF; +} + +.property-name, +.rule-matched, +.rule-unmatched { + cursor: pointer; +} + +/* Take away these two :visited rules to get a core dumper */ +/* See https://bugzilla.mozilla.org/show_bug.cgi?id=575675#c30 */ +.link { + color: #55A; +} +.link:visited { + color: #55A; +} +a.link { + text-decoration: none; + cursor: pointer; +} +a.link:visited { + text-decoration: none; +} + +.rule-matched, +.rule-unmatched { + padding: 2px 0; + white-space: nowrap; +} + +.rulelink { + color: #55A; +} + +.expander { + width: 8px; + height: 8px; + float: left; + -moz-margin-start: 15px; + -moz-margin-end: 5px; + margin-top: 3px; + background: url("chrome://browser/skin/devtools/arrows.png"); + background-position: 24px 0; +} + +.searchfield { + background: url("chrome://browser/skin/devtools/search.png") no-repeat; + border-radius: 5px; + -moz-padding-start: 20px; + width: 135px; + float: right; +} + +.expander[dir="rtl"] { + background-position: 16px 0; +} +.expander[open] { + background-position: 8px 0; +} + +.property-name { + display: inline-block; + font-size: 12px; + font-weight: bold; + color: #FF9F00; +} +.property-value { + display: inline-block; + font-size: 10px; +} + +.property-view-hidden { + display: none; +} + +.rule-link { + text-align: end; + -moz-padding-start: 10px; +} + +/* This rule is necessary because Templater.jsm breaks LTR TDs in RTL docs */ +.rule-text { + direction: ltr; + -moz-padding-start: 10px; +} + +.resizerbox { + background-color: #000000; +} + +.bestmatch { + color: #FFCF00; +} +.matched { + text-decoration: line-through; +} +.parentmatch { + color: #9C9CFF; +} +.unmatched { + color: #E7ADE7; +} + +.userStyles { + position: relative; + top: 3px; +} + +.userStyles, +.userStylesLabel { + cursor: pointer; +} diff --git a/LCARStrek/browser/devtools/search.png b/LCARStrek/browser/devtools/search.png new file mode 100644 index 00000000..d175a662 Binary files /dev/null and b/LCARStrek/browser/devtools/search.png differ