elbaitemoon

Elbaite theme for Pale Moon
Log | Files | Refs

newaddon.css (2094B)


      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 /* This Source Code Form is subject to the terms of the Mozilla Public
      6  * License, v. 2.0. If a copy of the MPL was not distributed with this
      7  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      8 
      9 @import url("chrome://global/skin/inContentUI.css");
     10 
     11 #addon-page {
     12   padding: 0;
     13 }
     14 
     15 #addon-scrollbox {
     16   overflow: auto;
     17   -moz-box-orient: vertical;
     18   -moz-box-flex: 1;
     19 }
     20 
     21 #spacer-start {
     22   -moz-box-flex: 1;
     23 }
     24 
     25 #spacer-end {
     26   -moz-box-flex: 3;
     27 }
     28 
     29 #addon-container {
     30   overflow: visible;
     31   max-width: 600px;
     32   margin: 20px;
     33   padding: 30px 90px;
     34 }
     35 
     36 #addon-info {
     37   -moz-box-align: start;
     38   margin: 25px 10px;
     39 }
     40 
     41 #icon {
     42   margin-inline-end: 10px;
     43   max-width: 64px;
     44   max-height: 64px;
     45   list-style-image: url("chrome://mozapps/skin/extensions/extensionGeneric.png");
     46 }
     47 
     48 .addon-info[type="theme"] #icon {
     49   list-style-image: url("chrome://mozapps/skin/extensions/themeGeneric.png");
     50 }
     51 
     52 .addon-info[type="locale"] #icon {
     53   list-style-image: url("chrome://mozapps/skin/extensions/localeGeneric.png");
     54 }
     55 
     56 .addon-info[type="plugin"] #icon {
     57   list-style-image: url("chrome://mozapps/skin/plugins/pluginGeneric.png");
     58 }
     59 
     60 .addon-info[type="dictionary"] #icon {
     61   list-style-image: url("chrome://mozapps/skin/extensions/dictionaryGeneric.png");
     62 }
     63 
     64 #name {
     65   font-size: 130%;
     66 }
     67 
     68 #author {
     69   color: GrayText;
     70 }
     71 
     72 #location {
     73   color: GrayText;
     74 }
     75 
     76 #warning {
     77   margin-bottom: 25px;
     78   -moz-box-align: start;
     79 }
     80 
     81 #warning-icon {
     82   list-style-image: url("chrome://mozapps/skin/extensions/alerticon-warning.png");
     83   width: 16px;
     84   height: 15px;
     85   margin-inline-end: 5px;
     86 }
     87 
     88 #allow {
     89   margin-inline-start: 84px;
     90   margin-bottom: 20px;
     91 }
     92 
     93 #continuePanel,
     94 #restartPanel {
     95   margin-top: 25px;
     96   -moz-box-pack: end;
     97   -moz-box-align: center;
     98 }
     99 
    100 #continuePanel {
    101   -moz-box-pack: end;
    102 }
    103 
    104 #restartMessage {
    105   text-align: right;
    106 }
    107 
    108 #restartSpacer {
    109   -moz-box-flex: 1;
    110 }
    111 
    112 #later {
    113   color: GrayText;
    114 }