browser/metro/theme/crashprompt.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/. */
     5 %filter substitution
     6 %include defines.inc
     8 body {
     9   background-color: #F4F4F4;
    10   margin-left: 16%;
    11   margin-right: 23%;
    12   margin-top: 115px;
    13 }
    15 a {
    16   text-decoration: none;
    17 }
    19 #detailsLink {
    20   color: black;
    21   display: table-row;
    22 }
    24 #detailsGrid {
    25   display: table;
    26 }
    28 #detailsContainer {
    29   display: table-row;
    30 }
    32 #detailsLinkLabel {
    33   display: table-cell;
    34 }
    36 .detailsSpacer {
    37   display: table-cell;
    38   padding-right: 8px;
    39 }
    41 #crashpromptDetailedMessage {
    42   font-size: @metro_font_snormal@;
    43   display: table-cell;
    44 }
    46 #crashPromptTitle {
    47   color: #737980;
    48   font-weight: normal;
    49 }
    51 .hidden {
    52   display: none !important;
    53 }
    55 #crashPromptButtonContainer {
    56   margin-top: 40px;
    57 }
    59 #lightboxBackdrop {
    60   position: fixed;
    61   top: 0%;
    62   left: 0%;
    63   width: 100%;
    64   height: 100%;
    65   z-index: 1001;
    66   background-color: rgba(0,0,0,0.7);
    67 }
    69 #lightbox {
    70   position: fixed;
    71   top: 20%;
    72   left: 15%;
    73   width: 70%;
    74   height: 60%;
    75   padding-bottom: 1%;
    76   padding-top: 1%;
    77   background-color: white;
    78   z-index: 1002;
    79 }
    81 #privacyPolicyTitle {
    82   margin-left: 10%;
    83 }
    85 #privacyPolicyBody {
    86   margin-left: 10%;
    87   margin-right: 10%;
    88   padding-right: 20px;
    89   max-height: 75%;
    90   overflow: auto;
    91 }
    93 #lightboxCloseButton {
    94   background-image: -moz-image-rect(url("chrome://browser/skin/images/infobar-close.png"), 0, 40, 40, 0);
    95   width: 40px;
    96   height: 40px;
    97   float: right;
    98   margin-right: 30px;
    99   margin-top: 10px;
   100 }
   102 button {
   103   color: #FFFFFF;
   104 }
   106 button:not([disabled]):hover {
   107   color: #FFFFFF;
   108 }
   110 #refuseButton {
   111   background: #847F7C;
   112 }
   114 #refuseButton:hover {
   115   background: #B0B0B0;
   116 }
   118 hr {
   119   border: 1px solid #C7C7C7;
   120 }
   122 #privacyPolicyLink {
   123   color: #649FEF;
   124 }
   126 .button-default {
   127   background: #649FEF;
   128   border-color: #9DCFF2;
   129 }
   131 .button-default:not([disabled]):hover {
   132   background: #2990D9;
   133   border-color: #8DBAD9;
   134 }

mercurial