7b59acf5325d5776c76734e894b7cdc389ffc698
[themes.git] / LCARStrek / browser / devtools / common.css
1 /* vim:set ts=2 sw=2 sts=2 et: */
2 /* ***** BEGIN LICENSE BLOCK *****
3  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4  *
5  * The contents of this file are subject to the Mozilla Public License Version
6  * 1.1 (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  * http://www.mozilla.org/MPL/
9  *
10  * Software distributed under the License is distributed on an "AS IS" basis,
11  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12  * for the specific language governing rights and limitations under the
13  * License.
14  *
15  * The Original Code is DevTools code.
16  *
17  * The Initial Developer of the Original Code is Mozilla Foundation.
18  * Portions created by the Initial Developer are Copyright (C) 2011
19  * the Initial Developer. All Rights Reserved.
20  *
21  * Contributor(s):
22  *   Paul Rouget <paul@mozilla.com> (original author)
23  *
24  * Alternatively, the contents of this file may be used under the terms of
25  * either the GNU General Public License Version 2 or later (the "GPL"), or
26  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27  * in which case the provisions of the GPL or the LGPL are applicable instead
28  * of those above. If you wish to allow use of your version of this file only
29  * under the terms of either the GPL or the LGPL, and not to allow others to
30  * use your version of this file under the terms of the MPL, indicate your
31  * decision by deleting the provisions above and replace them with the notice
32  * and other provisions required by the GPL or the LGPL. If you do not delete
33  * the provisions above, a recipient may use your version of this file under
34  * the terms of any one of the MPL, the GPL or the LGPL.
35  *
36  * ***** END LICENSE BLOCK ***** */
37
38 /* Toolbar and Toolbar items */
39
40 .devtools-toolbar {
41 }
42
43 .devtools-toolbarbutton {
44 }
45
46 .devtools-toolbarbutton > .toolbarbutton-icon {
47 }
48
49 .devtools-toolbarbutton:not([checked]):hover:active {
50 }
51
52 .devtools-toolbarbutton[checked] {
53 }
54
55 .devtools-toolbarbutton[checked]:hover:active {
56 }
57
58 /* Search input */
59
60 /*
61 .devtools-searchinput {
62   -moz-appearance: none;
63   margin: 0 3px;
64   border: 1px solid hsla(211,68%,6%,.6);
65   box-shadow: inset 0 1px 0 hsla(211,68%,6%,.05), 0 0 0 1px hsla(210,40%,83%,.1);
66   border-radius: 2px;
67   background-color: transparent;
68   background-image: url(magnifying-glass.png), -moz-linear-gradient(hsla(210,16%,76%,.15), hsla(210,16%,76%,.35));
69   background-repeat: no-repeat;
70   background-position: 4px 3px, top left, top left;
71   padding-top: 0;
72   padding-bottom: 0;
73   -moz-padding-start: 18px;
74   -moz-padding-end: 12px;
75   color: hsl(210,30%,85%);
76   -moz-transition-property: background-color, border-color, box-shadow;
77   -moz-transition-duration: 150ms;
78   -moz-transition-timing-function: ease;
79 }
80
81 .devtools-searchinput[focused] {
82   border-color: hsl(200,70%,40%) hsl(200,75%,37%) hsl(200,80%,35%);
83   background-origin: padding-box;
84   background-clip: padding-box;
85   box-shadow: inset 0 0 0 1px hsla(211,68%,6%,.1);
86 }
87
88 .devtools-searchinput:-moz-locale-dir(rtl) {
89   background-position: -moz-calc(100% - 4px) 3px, top left, top left;
90 }
91
92 .devtools-searchinput > .textbox-input-box > .textbox-search-icons {
93   display: none;
94 }
95
96 .devtools-searchinput > .textbox-input-box > .textbox-input:-moz-placeholder {
97   color: hsl(208,10%,66%);
98 }
99 */
100
101 /* Splitters */
102
103 #devtools-side-splitter,
104 #inspector-tree-splitter {
105   border: none;
106 }