relicense to MPL2
[themes.git] / LCARStrek / browser / devtools / common.css
1 /* vim:set ts=2 sw=2 sts=2 et: */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this
4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5
6 /* Toolbar and Toolbar items */
7
8 .devtools-toolbar {
9 }
10
11 .devtools-toolbarbutton {
12 }
13
14 .devtools-toolbarbutton > .toolbarbutton-icon {
15 }
16
17 .devtools-toolbarbutton:not([label]) {
18   min-width: 20px;
19 }
20
21 .devtools-toolbarbutton:not([checked]):hover:active {
22 }
23
24 .devtools-toolbarbutton[checked] {
25 }
26
27 .devtools-toolbarbutton[checked]:hover:active {
28 }
29
30 /* Search input */
31
32 /*
33 .devtools-searchinput {
34   -moz-appearance: none;
35   margin: 0 3px;
36   border: 1px solid hsla(211,68%,6%,.6);
37   box-shadow: inset 0 1px 0 hsla(211,68%,6%,.05), 0 0 0 1px hsla(210,40%,83%,.1);
38   border-radius: 2px;
39   background-color: transparent;
40   background-image: url(magnifying-glass.png), -moz-linear-gradient(hsla(210,16%,76%,.15), hsla(210,16%,76%,.35));
41   background-repeat: no-repeat;
42   background-position: 4px 3px, top left, top left;
43   padding-top: 0;
44   padding-bottom: 0;
45   -moz-padding-start: 18px;
46   -moz-padding-end: 12px;
47   color: hsl(210,30%,85%);
48   -moz-transition-property: background-color, border-color, box-shadow;
49   -moz-transition-duration: 150ms;
50   -moz-transition-timing-function: ease;
51 }
52
53 .devtools-searchinput[focused] {
54   border-color: hsl(200,70%,40%) hsl(200,75%,37%) hsl(200,80%,35%);
55   background-origin: padding-box;
56   background-clip: padding-box;
57   box-shadow: inset 0 0 0 1px hsla(211,68%,6%,.1);
58 }
59
60 .devtools-searchinput:-moz-locale-dir(rtl) {
61   background-position: -moz-calc(100% - 4px) 3px, top left, top left;
62 }
63
64 .devtools-searchinput > .textbox-input-box > .textbox-search-icons {
65   display: none;
66 }
67
68 .devtools-searchinput > .textbox-input-box > .textbox-input:-moz-placeholder {
69   color: hsl(208,10%,66%);
70 }
71 */
72
73 /* Splitters */
74
75 #devtools-side-splitter {
76   border: none;
77 }