michael@0: /* vim:set ts=2 sw=2 sts=2 et: */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #inspector-searchbox { michael@0: transition-property: max-width, -moz-padding-end, -moz-padding-start; michael@0: transition-duration: 250ms; michael@0: transition-timing-function: ease; michael@0: } michael@0: michael@0: #inspector-searchbox:not([focused]):not([filled]) > .textbox-input-box { michael@0: overflow: hidden; michael@0: } michael@0: michael@0: #inspector-searchbox:not([focused]):not([filled]) { michael@0: max-width: 20px !important; michael@0: -moz-padding-end: 6px; michael@0: -moz-padding-start: 22px; michael@0: background-position: 8px center, top left, top left; michael@0: } michael@0: michael@0: #inspector-searchbox[focused], michael@0: #inspector-searchbox[filled] { michael@0: max-width: 200px !important; michael@0: }