browser/devtools/framework/options-panel.css

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     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 }

mercurial