toolkit/themes/osx/mozapps/extensions/about.css

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

     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 #genericAbout {
     6   padding: 0px;
     7   min-height: 200px;
     8   max-height: 400px;
     9   width: 30em;
    10 }
    12 #clientBox {
    13   background-color: -moz-Dialog;
    14   color: -moz-DialogText;
    15 }
    17 .basic-info {
    18   padding: 10px;
    19 }
    21 #extensionIcon {
    22   list-style-image: url("chrome://mozapps/skin/extensions/extensionGeneric.png");
    23   max-width: 64px;
    24   max-height: 64px;
    25   -moz-margin-end: 6px;
    26 }
    28 #genericAbout[addontype="theme"] #extensionIcon {
    29   list-style-image: url("chrome://mozapps/skin/extensions/themeGeneric.png");
    30 }
    32 #genericAbout[addontype="locale"] #extensionIcon {
    33   list-style-image: url("chrome://mozapps/skin/extensions/localeGeneric.png");
    34 }
    36 #genericAbout[addontype="plugin"] #extensionIcon {
    37   list-style-image: url("chrome://mozapps/skin/plugins/pluginGeneric.png");
    38 }
    40 #genericAbout[addontype="dictionary"] #extensionIcon {
    41   list-style-image: url("chrome://mozapps/skin/extensions/dictionaryGeneric.png");
    42 }
    44 #extensionName {
    45   font-size: 200%;
    46   font-weight: bolder;
    47 }
    49 #extensionVersion {
    50   font-weight: bold;
    51 }
    53 #extensionDescription {
    54   margin-top: 4px;
    55 }
    57 #groove {
    58   margin-top: 8px;
    59 }
    61 #extensionDetailsBox {
    62   overflow: auto;
    63   min-height: 100px;
    64 }
    66 .boxIndent {
    67   -moz-margin-start: 18px;
    68 }
    70 #extensionCreator, .contributor {
    71   margin: 0px;
    72 } 
    74 .sectionTitle {
    75   padding: 2px 0px 3px 0px;
    76   margin-top: 3px;
    77   font-weight: bold;
    78 }

mercurial