finish sync of LCARStrek with Firefox 13 winstripe changes
[themes.git] / LCARStrek / browser / devtools / common.css
CommitLineData
3d85dbf1
RK
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
8d7ef0d9
RK
49.devtools-toolbarbutton:not([label]) {
50 min-width: 20px;
51}
52
3d85dbf1
RK
53.devtools-toolbarbutton:not([checked]):hover:active {
54}
55
56.devtools-toolbarbutton[checked] {
57}
58
59.devtools-toolbarbutton[checked]:hover:active {
60}
61
62/* Search input */
63
64/*
65.devtools-searchinput {
66 -moz-appearance: none;
67 margin: 0 3px;
68 border: 1px solid hsla(211,68%,6%,.6);
69 box-shadow: inset 0 1px 0 hsla(211,68%,6%,.05), 0 0 0 1px hsla(210,40%,83%,.1);
70 border-radius: 2px;
71 background-color: transparent;
72 background-image: url(magnifying-glass.png), -moz-linear-gradient(hsla(210,16%,76%,.15), hsla(210,16%,76%,.35));
73 background-repeat: no-repeat;
74 background-position: 4px 3px, top left, top left;
75 padding-top: 0;
76 padding-bottom: 0;
77 -moz-padding-start: 18px;
78 -moz-padding-end: 12px;
79 color: hsl(210,30%,85%);
80 -moz-transition-property: background-color, border-color, box-shadow;
81 -moz-transition-duration: 150ms;
82 -moz-transition-timing-function: ease;
83}
84
85.devtools-searchinput[focused] {
86 border-color: hsl(200,70%,40%) hsl(200,75%,37%) hsl(200,80%,35%);
87 background-origin: padding-box;
88 background-clip: padding-box;
89 box-shadow: inset 0 0 0 1px hsla(211,68%,6%,.1);
90}
91
92.devtools-searchinput:-moz-locale-dir(rtl) {
93 background-position: -moz-calc(100% - 4px) 3px, top left, top left;
94}
95
96.devtools-searchinput > .textbox-input-box > .textbox-search-icons {
97 display: none;
98}
99
100.devtools-searchinput > .textbox-input-box > .textbox-input:-moz-placeholder {
101 color: hsl(208,10%,66%);
102}
713cf603
RK
103*/
104
105/* Splitters */
106
8d7ef0d9 107#devtools-side-splitter {
713cf603
RK
108 border: none;
109}