browser/themes/osx/aboutCertError.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/. */
     6 html {
     7   background: -moz-Dialog;
     8 }
    10 body {
    11   margin: 0;
    12   padding: 0 1em;
    13   color: -moz-FieldText;
    14   font: message-box;
    15 }
    17 h1 {
    18   margin: 0 0 .6em 0;
    19   border-bottom: 1px solid ThreeDLightShadow;
    20   font-size: 160%;
    21 }
    23 h2 {
    24   font-size: 130%;
    25 }
    27 #errorPageContainer {
    28   position: relative;
    29   min-width: 13em;
    30   max-width: 52em;
    31   margin: 4em auto;
    32   border: 1px solid #FFBD09; /* pale yellow extracted from yellow passport icon */
    33   border-radius: 10px;
    34   padding: 3em;
    35   -moz-padding-start: 30px;
    36   background: url("chrome://global/skin/icons/sslWarning.png") left 0 no-repeat -moz-Field;
    37   background-origin: content-box;
    38 }
    40 #errorPageContainer:-moz-dir(rtl) {
    41   background-position: right 0;
    42 }
    44 #errorTitle {
    45   -moz-margin-start: 80px;
    46 }
    48 #errorLongContent {
    49   -moz-margin-start: 80px;
    50 }
    52 .expander > button {
    53   -moz-padding-start: 20px;
    54   -moz-margin-start: -20px;
    55   background: url("chrome://browser/skin/aboutCertError_sectionExpanded.png") left center no-repeat;
    56   border: none;
    57   font: inherit;
    58   color: inherit;
    59   cursor: pointer;
    60 }
    62 .expander > button:-moz-dir(rtl) {
    63   background-position: right center;
    64 }
    66 .expander[collapsed] > button {
    67   background-image: url("chrome://browser/skin/aboutCertError_sectionCollapsed.png");
    68 }
    70 .expander[collapsed] > button:-moz-dir(rtl) {
    71   background-image: url("chrome://browser/skin/aboutCertError_sectionCollapsed-rtl.png");
    72 }

mercurial