toolkit/themes/linux/mozapps/extensions/newaddon.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 @import url("chrome://global/skin/inContentUI.css");
     7 #addon-page {
     8   padding: 0;
     9 }
    11 #addon-scrollbox {
    12   overflow: auto;
    13   -moz-box-orient: vertical;
    14   -moz-box-flex: 1;
    15 }
    17 #spacer-start {
    18   -moz-box-flex: 1;
    19 }
    21 #spacer-end {
    22   -moz-box-flex: 3;
    23 }
    25 #addon-container {
    26   overflow: visible;
    27   max-width: 600px;
    28   margin: 20px;
    29   padding: 30px 90px;
    30 }
    32 #addon-info {
    33   -moz-box-align: start;
    34   margin: 25px 10px;
    35 }
    37 #icon {
    38   -moz-margin-end: 10px;
    39   max-width: 64px;
    40   max-height: 64px;
    41   list-style-image: url("chrome://mozapps/skin/extensions/extensionGeneric.png");
    42 }
    44 .addon-info[type="theme"] #icon {
    45   list-style-image: url("chrome://mozapps/skin/extensions/themeGeneric.png");
    46 }
    48 .addon-info[type="locale"] #icon {
    49   list-style-image: url("chrome://mozapps/skin/extensions/localeGeneric.png");
    50 }
    52 .addon-info[type="plugin"] #icon {
    53   list-style-image: url("chrome://mozapps/skin/plugins/pluginGeneric.png");
    54 }
    56 .addon-info[type="dictionary"] #icon {
    57   list-style-image: url("chrome://mozapps/skin/extensions/dictionaryGeneric.png");
    58 }
    60 #name {
    61   font-size: 130%;
    62 }
    64 #author {
    65   color: GrayText;
    66 }
    68 #location {
    69   color: GrayText;
    70 }
    72 #warning {
    73   margin-bottom: 25px;
    74   -moz-box-align: start;
    75 }
    77 #warning-icon {
    78   list-style-image: url("chrome://mozapps/skin/extensions/alerticon-warning.png");
    79   width: 16px;
    80   height: 15px;
    81   -moz-margin-end: 5px;
    82 }
    84 #allow {
    85   -moz-margin-start: 84px;
    86   margin-bottom: 20px;
    87 }
    89 #continuePanel,
    90 #restartPanel {
    91   margin-top: 25px;
    92   -moz-box-pack: end;
    93   -moz-box-align: end;
    94 }
    96 #continuePanel {
    97   -moz-box-pack: end;
    98 }
   100 #restartMessage {
   101   text-align: right;
   102 }
   104 #restartSpacer {
   105   -moz-box-flex: 1;
   106 }
   108 #later {
   109   color: GrayText;
   110 }

mercurial