browser/themes/osx/devtools/inspector.css

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:9cb871e15a53
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 %include ../shared.inc
7 %filter substitution
8
9 #inspector-toolbar {
10 padding-top: 4px;
11 padding-bottom: 4px;
12 }
13
14 #inspector-toolbar:-moz-locale-dir(ltr) {
15 padding-left: 2px;
16 padding-right: 16px; /* use -moz-padding-end when/if bug 631729 gets fixed */
17 }
18
19 #inspector-toolbar:-moz-locale-dir(rtl) {
20 padding-left: 4px;
21 padding-right: 18px; /* use -moz-padding-end when/if bug 631729 gets fixed */
22 }
23
24 #inspector-searchbox {
25 transition-property: max-width, -moz-padding-end, -moz-padding-start;
26 transition-duration: 250ms;
27 transition-timing-function: ease;
28 }
29
30 #inspector-searchbox:not([focused]):not([filled]) > .textbox-input-box {
31 overflow: hidden;
32 }
33
34 #inspector-searchbox:not([focused]):not([filled]) {
35 max-width: 20px !important;
36 -moz-padding-end: 5px;
37 -moz-padding-start: 22px;
38 background-position: 8px center, top left, top left;
39 }
40
41 #inspector-searchbox[focused],
42 #inspector-searchbox[filled] {
43 max-width: 200px !important;
44 }

mercurial