browser/devtools/commandline/commandline.css

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

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 .gcli-help-name {
     6   text-align: end;
     7 }
     9 .gcli-out-shortcut,
    10 .gcli-help-synopsis {
    11   cursor: pointer;
    12   display: inline-block;
    13 }
    15 .gcli-out-shortcut:before,
    16 .gcli-help-synopsis:before {
    17   content: '\bb';
    18 }
    20 .gcli-menu-template {
    21   white-space: nowrap;
    22   width: 290px;
    23   display: flex;
    24 }
    26 .gcli-menu-names {
    27   white-space: nowrap;
    28   flex-grow: 0;
    29   flex-shrink: 0;
    30 }
    32 .gcli-menu-descs {
    33   flex-grow: 1;
    34   flex-shrink: 1;
    35 }
    37 .gcli-menu-name,
    38 .gcli-menu-desc {
    39   white-space: nowrap;
    40 }
    42 .gcli-menu-name {
    43   -moz-padding-end: 10px;
    44 }
    46 .gcli-menu-desc {
    47   text-overflow: ellipsis;
    48   overflow: hidden;
    49 }
    51 .gcli-menu-name,
    52 .gcli-out-shortcut,
    53 .gcli-help-synopsis {
    54   direction: ltr;
    55 }
    57 .gcli-cookielist-list {
    58   list-style-type: none;
    59   padding-left: 0;
    60 }
    62 .gcli-cookielist-detail {
    63   padding-left: 20px;
    64   padding-bottom: 10px;
    65 }
    67 .gcli-appcache-list {
    68   list-style-type: none;
    69   padding-left: 0;
    70 }
    72 .gcli-appcache-detail {
    73   padding-left: 20px;
    74   padding-bottom: 10px;
    75 }
    77 .gcli-row-out .nowrap {
    78   white-space: nowrap;
    79 }

mercurial