09eb01351c4838b77e0dbaad8bfa7d3af55cf38e
[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-menulist,
12 .devtools-toolbarbutton {
13 }
14
15 devtools-menulist:-moz-focusring,
16 .devtools-toolbarbutton:-moz-focusring {
17   outline: 1px dotted #008484;
18   outline-offset: -4px;
19 }
20
21 .devtools-toolbarbutton > .toolbarbutton-icon {
22 }
23
24 .devtools-toolbarbutton:not([label]) {
25   min-width: 20px;
26 }
27
28 .devtools-toolbarbutton:not([checked]):hover:active {
29 }
30
31 .devtools-menulist[open=true],
32 .devtools-toolbarbutton[checked] {
33 }
34
35 .devtools-toolbarbutton[checked]:hover:active {
36 }
37
38 .devtools-menulist > .menulist-label-box {
39   text-align: center;
40 }
41
42 .devtools-menulist > .menulist-dropmarker {
43 }
44
45 .devtools-menulist:focus:not([open="true"]):not(.menulist-compact) > .menulist-label-box {
46 }
47
48 /* Search input */
49
50 /*
51 .devtools-searchinput {
52   -moz-appearance: none;
53   margin: 0 3px;
54   border: 1px solid hsla(211,68%,6%,.6);
55   box-shadow: inset 0 1px 0 hsla(211,68%,6%,.05), 0 0 0 1px hsla(210,40%,83%,.1);
56   border-radius: 2px;
57   background-color: transparent;
58   background-image: url(magnifying-glass.png), -moz-linear-gradient(hsla(210,16%,76%,.15), hsla(210,16%,76%,.35));
59   background-repeat: no-repeat;
60   background-position: 4px center, top left, top left;
61   padding-top: 0;
62   padding-bottom: 0;
63   -moz-padding-start: 18px;
64   -moz-padding-end: 12px;
65   -moz-transition-property: background-color, border-color, box-shadow;
66   -moz-transition-duration: 150ms;
67   -moz-transition-timing-function: ease;
68   color: inherit;
69 }
70
71 .devtools-searchinput[focused] {
72   border-color: hsl(200,70%,40%) hsl(200,75%,37%) hsl(200,80%,35%);
73   background-origin: padding-box;
74   background-clip: padding-box;
75   box-shadow: inset 0 0 0 1px hsla(211,68%,6%,.1);
76 }
77
78 .devtools-searchinput:-moz-locale-dir(rtl) {
79   background-position: -moz-calc(100% - 4px) 3px, top left, top left;
80 }
81
82 .devtools-searchinput > .textbox-input-box > .textbox-search-icons {
83   display: none;
84 }
85
86 .devtools-searchinput > .textbox-input-box > .textbox-input:-moz-placeholder {
87   color: hsl(208,10%,66%);
88 }
89 */
90
91 /* Close button */
92
93 .devtools-closebutton {
94   list-style-image: url("chrome://global/skin/icons/close-button.gif");
95   min-width: 16px;
96   width: 16px;
97 }
98
99 .devtools-closebutton > .toolbarbutton-text {
100   display: none;
101 }
102
103 .devtools-closebutton:hover,
104 .devtools-closebutton:hover:active {
105   list-style-image: url("chrome://global/skin/icons/close-button-hover.gif");
106 }
107
108 /* Splitter */
109
110 .devtools-horizontal-splitter {
111   border: none;
112   min-height: 3px;
113   height: 3px;
114   margin-bottom: -3px;
115   position: relative;
116 }
117
118 #devtools-side-splitter {
119   border: none;
120 }