diff -r 000000000000 -r 6474c204b198 browser/devtools/framework/options-panel.css --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/browser/devtools/framework/options-panel.css Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,58 @@ +/* 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/. */ + +#options-panel-container { + overflow: auto; +} + +#options-panel { + display: block; +} + +.options-vertical-pane { + display: inline; + float: left; +} + +.options-vertical-pane > label { + display: block; +} + +.options-vertical-pane { + margin: 5px; + width: calc(50% - 30px); + min-width: 350px; + -moz-padding-start: 5px; +} + +.options-vertical-pane > label { + padding: 2px 0; + font-size: 1.4rem; +} + +.options-groupbox { + -moz-margin-start: 15px; + padding: 2px; +} + +.options-groupbox > *, +.options-groupbox > .hidden-labels-box > checkbox { + padding: 2px; +} + +.options-groupbox > .hidden-labels-box { + padding: 0; +} + +.options-citation-label { + font-size: 1rem !important; + /* !important is required otherwise font-size will still be 1.4rem */ + font-style: italic; + padding: 4px 0 0; /* To align it with the checkbox */ +} + +.hidden-labels-box:not(.visible) > label, +.hidden-labels-box.visible ~ .hidden-labels-box > label:last-child { + display: none; +}