1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/themes/windows/devtools/inspector.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,26 @@ 1.4 +/* vim:set ts=2 sw=2 sts=2 et: */ 1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.8 + 1.9 +#inspector-searchbox { 1.10 + transition-property: max-width, -moz-padding-end, -moz-padding-start; 1.11 + transition-duration: 250ms; 1.12 + transition-timing-function: ease; 1.13 +} 1.14 + 1.15 +#inspector-searchbox:not([focused]):not([filled]) > .textbox-input-box { 1.16 + overflow: hidden; 1.17 +} 1.18 + 1.19 +#inspector-searchbox:not([focused]):not([filled]) { 1.20 + max-width: 20px !important; 1.21 + -moz-padding-end: 6px; 1.22 + -moz-padding-start: 22px; 1.23 + background-position: 8px center, top left, top left; 1.24 +} 1.25 + 1.26 +#inspector-searchbox[focused], 1.27 +#inspector-searchbox[filled] { 1.28 + max-width: 200px !important; 1.29 +}