browser/devtools/framework/options-panel.css

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/browser/devtools/framework/options-panel.css	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,58 @@
     1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public
     1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this
     1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     1.7 +
     1.8 +#options-panel-container {
     1.9 +  overflow: auto;
    1.10 +}
    1.11 +
    1.12 +#options-panel {
    1.13 +  display: block;
    1.14 +}
    1.15 +
    1.16 +.options-vertical-pane {
    1.17 +  display: inline;
    1.18 +  float: left;
    1.19 +}
    1.20 +
    1.21 +.options-vertical-pane > label {
    1.22 +  display: block;
    1.23 +}
    1.24 +
    1.25 +.options-vertical-pane {
    1.26 +  margin: 5px;
    1.27 +  width: calc(50% - 30px);
    1.28 +  min-width: 350px;
    1.29 +  -moz-padding-start: 5px;
    1.30 +}
    1.31 +
    1.32 +.options-vertical-pane > label {
    1.33 +  padding: 2px 0;
    1.34 +  font-size: 1.4rem;
    1.35 +}
    1.36 +
    1.37 +.options-groupbox {
    1.38 +  -moz-margin-start: 15px;
    1.39 +  padding: 2px;
    1.40 +}
    1.41 +
    1.42 +.options-groupbox > *,
    1.43 +.options-groupbox > .hidden-labels-box > checkbox {
    1.44 +  padding: 2px;
    1.45 +}
    1.46 +
    1.47 +.options-groupbox > .hidden-labels-box {
    1.48 +  padding: 0;
    1.49 +}
    1.50 +
    1.51 +.options-citation-label {
    1.52 +  font-size: 1rem !important;
    1.53 +  /* !important is required otherwise font-size will still be 1.4rem */
    1.54 +  font-style: italic;
    1.55 +  padding: 4px 0 0; /* To align it with the checkbox */
    1.56 +}
    1.57 +
    1.58 +.hidden-labels-box:not(.visible) > label,
    1.59 +.hidden-labels-box.visible ~ .hidden-labels-box > label:last-child {
    1.60 +  display: none;
    1.61 +}

mercurial