browser/devtools/framework/options-panel.css

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:537f9aa10227
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/. */
4
5 #options-panel-container {
6 overflow: auto;
7 }
8
9 #options-panel {
10 display: block;
11 }
12
13 .options-vertical-pane {
14 display: inline;
15 float: left;
16 }
17
18 .options-vertical-pane > label {
19 display: block;
20 }
21
22 .options-vertical-pane {
23 margin: 5px;
24 width: calc(50% - 30px);
25 min-width: 350px;
26 -moz-padding-start: 5px;
27 }
28
29 .options-vertical-pane > label {
30 padding: 2px 0;
31 font-size: 1.4rem;
32 }
33
34 .options-groupbox {
35 -moz-margin-start: 15px;
36 padding: 2px;
37 }
38
39 .options-groupbox > *,
40 .options-groupbox > .hidden-labels-box > checkbox {
41 padding: 2px;
42 }
43
44 .options-groupbox > .hidden-labels-box {
45 padding: 0;
46 }
47
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 }
54
55 .hidden-labels-box:not(.visible) > label,
56 .hidden-labels-box.visible ~ .hidden-labels-box > label:last-child {
57 display: none;
58 }

mercurial