browser/themes/osx/aboutCertError.css

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/browser/themes/osx/aboutCertError.css	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,72 @@
     1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public
     1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this
     1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     1.7 +
     1.8 +
     1.9 +html {
    1.10 +  background: -moz-Dialog;
    1.11 +}
    1.12 +
    1.13 +body {
    1.14 +  margin: 0;
    1.15 +  padding: 0 1em;
    1.16 +  color: -moz-FieldText;
    1.17 +  font: message-box;
    1.18 +}
    1.19 +
    1.20 +h1 {
    1.21 +  margin: 0 0 .6em 0;
    1.22 +  border-bottom: 1px solid ThreeDLightShadow;
    1.23 +  font-size: 160%;
    1.24 +}
    1.25 +
    1.26 +h2 {
    1.27 +  font-size: 130%;
    1.28 +}
    1.29 +
    1.30 +#errorPageContainer {
    1.31 +  position: relative;
    1.32 +  min-width: 13em;
    1.33 +  max-width: 52em;
    1.34 +  margin: 4em auto;
    1.35 +  border: 1px solid #FFBD09; /* pale yellow extracted from yellow passport icon */
    1.36 +  border-radius: 10px;
    1.37 +  padding: 3em;
    1.38 +  -moz-padding-start: 30px;
    1.39 +  background: url("chrome://global/skin/icons/sslWarning.png") left 0 no-repeat -moz-Field;
    1.40 +  background-origin: content-box;
    1.41 +}
    1.42 +
    1.43 +#errorPageContainer:-moz-dir(rtl) {
    1.44 +  background-position: right 0;
    1.45 +}
    1.46 +
    1.47 +#errorTitle {
    1.48 +  -moz-margin-start: 80px;
    1.49 +}
    1.50 +
    1.51 +#errorLongContent {
    1.52 +  -moz-margin-start: 80px;
    1.53 +}
    1.54 +
    1.55 +.expander > button {
    1.56 +  -moz-padding-start: 20px;
    1.57 +  -moz-margin-start: -20px;
    1.58 +  background: url("chrome://browser/skin/aboutCertError_sectionExpanded.png") left center no-repeat;
    1.59 +  border: none;
    1.60 +  font: inherit;
    1.61 +  color: inherit;
    1.62 +  cursor: pointer;
    1.63 +}
    1.64 +
    1.65 +.expander > button:-moz-dir(rtl) {
    1.66 +  background-position: right center;
    1.67 +}
    1.68 +
    1.69 +.expander[collapsed] > button {
    1.70 +  background-image: url("chrome://browser/skin/aboutCertError_sectionCollapsed.png");
    1.71 +}
    1.72 +
    1.73 +.expander[collapsed] > button:-moz-dir(rtl) {
    1.74 +  background-image: url("chrome://browser/skin/aboutCertError_sectionCollapsed-rtl.png");
    1.75 +}

mercurial