mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
ff6190f541
--HG-- rename : browser/devtools/debugger/test/browser_dbg_script-switching.js => browser/devtools/debugger/test/browser_dbg_scripts-switching.js
36 lines
1.0 KiB
CSS
36 lines
1.0 KiB
CSS
/* vim:set ts=2 sw=2 sts=2 et: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#inspector-inspect-toolbutton {
|
|
list-style-image: url("chrome://browser/skin/devtools/inspect-button.png");
|
|
-moz-image-region: rect(0px 16px 16px 0px);
|
|
}
|
|
|
|
#inspector-inspect-toolbutton[checked=true] {
|
|
-moz-image-region: rect(0px 32px 16px 16px);
|
|
}
|
|
|
|
#inspector-searchbox {
|
|
transition-property: max-width, -moz-padding-end, -moz-padding-start;
|
|
transition-duration: 250ms;
|
|
transition-timing-function: ease;
|
|
}
|
|
|
|
#inspector-searchbox:not([focused]):not([filled]) > .textbox-input-box {
|
|
overflow: hidden;
|
|
}
|
|
|
|
#inspector-searchbox:not([focused]):not([filled]) {
|
|
max-width: 20px !important;
|
|
-moz-padding-end: 6px;
|
|
-moz-padding-start: 22px;
|
|
background-position: 8px center, top left, top left;
|
|
}
|
|
|
|
#inspector-searchbox[focused],
|
|
#inspector-searchbox[filled] {
|
|
max-width: 200px !important;
|
|
}
|