complete sync of LCARStrek with browser winstripe changes in Firefox 14
[themes.git] / LCARStrek / browser / devtools / common.css
CommitLineData
3d85dbf1 1/* vim:set ts=2 sw=2 sts=2 et: */
9099c61d
RK
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/. */
3d85dbf1
RK
5
6/* Toolbar and Toolbar items */
7
8.devtools-toolbar {
9}
10
11.devtools-toolbarbutton {
12}
13
a40f6a79
RK
14.devtools-toolbarbutton:-moz-focusring {
15 outline: 1px dotted #008484;
16 outline-offset: -4px;
17}
18
3d85dbf1
RK
19.devtools-toolbarbutton > .toolbarbutton-icon {
20}
21
8d7ef0d9
RK
22.devtools-toolbarbutton:not([label]) {
23 min-width: 20px;
24}
25
3d85dbf1
RK
26.devtools-toolbarbutton:not([checked]):hover:active {
27}
28
29.devtools-toolbarbutton[checked] {
30}
31
32.devtools-toolbarbutton[checked]:hover:active {
33}
34
35/* Search input */
36
37/*
38.devtools-searchinput {
39 -moz-appearance: none;
40 margin: 0 3px;
41 border: 1px solid hsla(211,68%,6%,.6);
42 box-shadow: inset 0 1px 0 hsla(211,68%,6%,.05), 0 0 0 1px hsla(210,40%,83%,.1);
43 border-radius: 2px;
44 background-color: transparent;
45 background-image: url(magnifying-glass.png), -moz-linear-gradient(hsla(210,16%,76%,.15), hsla(210,16%,76%,.35));
46 background-repeat: no-repeat;
47 background-position: 4px 3px, top left, top left;
48 padding-top: 0;
49 padding-bottom: 0;
50 -moz-padding-start: 18px;
51 -moz-padding-end: 12px;
52 color: hsl(210,30%,85%);
53 -moz-transition-property: background-color, border-color, box-shadow;
54 -moz-transition-duration: 150ms;
55 -moz-transition-timing-function: ease;
56}
57
58.devtools-searchinput[focused] {
59 border-color: hsl(200,70%,40%) hsl(200,75%,37%) hsl(200,80%,35%);
60 background-origin: padding-box;
61 background-clip: padding-box;
62 box-shadow: inset 0 0 0 1px hsla(211,68%,6%,.1);
63}
64
65.devtools-searchinput:-moz-locale-dir(rtl) {
66 background-position: -moz-calc(100% - 4px) 3px, top left, top left;
67}
68
69.devtools-searchinput > .textbox-input-box > .textbox-search-icons {
70 display: none;
71}
72
73.devtools-searchinput > .textbox-input-box > .textbox-input:-moz-placeholder {
74 color: hsl(208,10%,66%);
75}
713cf603
RK
76*/
77
78/* Splitters */
79
8d7ef0d9 80#devtools-side-splitter {
713cf603
RK
81 border: none;
82}