browser/themes/osx/devtools/inspector.css

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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/. */
     6 %include ../shared.inc
     7 %filter substitution
     9 #inspector-toolbar {
    10   padding-top: 4px;
    11   padding-bottom: 4px;
    12 }
    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 }
    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 }
    24 #inspector-searchbox {
    25   transition-property: max-width, -moz-padding-end, -moz-padding-start;
    26   transition-duration: 250ms;
    27   transition-timing-function: ease;
    28 }
    30 #inspector-searchbox:not([focused]):not([filled]) > .textbox-input-box {
    31   overflow: hidden;
    32 }
    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 }
    41 #inspector-searchbox[focused],
    42 #inspector-searchbox[filled] {
    43   max-width: 200px !important;
    44 }

mercurial