Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 #options-panel-container {
6 overflow: auto;
7 }
9 #options-panel {
10 display: block;
11 }
13 .options-vertical-pane {
14 display: inline;
15 float: left;
16 }
18 .options-vertical-pane > label {
19 display: block;
20 }
22 .options-vertical-pane {
23 margin: 5px;
24 width: calc(50% - 30px);
25 min-width: 350px;
26 -moz-padding-start: 5px;
27 }
29 .options-vertical-pane > label {
30 padding: 2px 0;
31 font-size: 1.4rem;
32 }
34 .options-groupbox {
35 -moz-margin-start: 15px;
36 padding: 2px;
37 }
39 .options-groupbox > *,
40 .options-groupbox > .hidden-labels-box > checkbox {
41 padding: 2px;
42 }
44 .options-groupbox > .hidden-labels-box {
45 padding: 0;
46 }
48 .options-citation-label {
49 font-size: 1rem !important;
50 /* !important is required otherwise font-size will still be 1.4rem */
51 font-style: italic;
52 padding: 4px 0 0; /* To align it with the checkbox */
53 }
55 .hidden-labels-box:not(.visible) > label,
56 .hidden-labels-box.visible ~ .hidden-labels-box > label:last-child {
57 display: none;
58 }