browser/themes/linux/syncSetup.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 wizard {
     6   -moz-appearance: none;
     7   width: 55em;
     8   height: 45em;
     9   padding: 0;
    10   background-color: Window;
    11 }
    13 .wizard-page-box {
    14   -moz-appearance: none;
    15   padding-left: 0;
    16   padding-right: 0;
    17   margin: 0;
    18 }
    20 wizardpage {
    21   -moz-box-pack: center;
    22   -moz-box-align: center;
    23   margin: 0;
    24   padding: 0 6em;
    25   background-color: Window;
    26 }
    28 .wizard-header {
    29   -moz-appearance: none;
    30   border: none;
    31   padding: 2em 0 1em 0;
    32   text-align: center;
    33 }
    34 .wizard-header-label {
    35   font-size: 24pt;
    36   font-weight: normal;
    37 }
    39 .wizard-buttons {
    40   background-color: rgba(0,0,0,0.1);
    41   padding: 1em;
    42 }
    44 .wizard-buttons-separator {
    45   visibility: collapse;
    46 }
    48 .wizard-header-icon {
    49   visibility: collapse;
    50 }
    52 .accountChoiceButton {
    53   font: menu;
    54 }
    56 .confirm {
    57   border: 1px solid black;
    58   padding: 1em;
    59   border-radius: 5px;
    60 }
    62 /* Override the text-link style from global.css */
    63 description > .text-link,
    64 description > .text-link:focus {
    65   margin: 0px;
    66   padding: 0px;
    67   border: 0px;
    68 }
    71 .success,
    72 .error {
    73   padding: 2px;
    74   border-radius: 2px;
    75 }
    77 .error {
    78   background-color: #FF0000 !important;
    79   color: #FFFFFF !important;
    80 }
    82 .success {
    83   background-color: #00FF00 !important;
    84 }
    86 .warning {
    87   font-weight: bold;
    88   font-size: 100%;
    89   color: red;
    90 }
    92 .mainDesc {
    93   font-weight: bold;
    94   font-size: 100%;
    95 }
    97 .normal {
    98   font-size: 100%;
    99 }
   101 .inputColumn {
   102   -moz-margin-end: 2px
   103 }
   105 .pin {
   106   font-size: 18pt;
   107   width: 4em;
   108   text-align: center; 
   109 }
   111 #passphraseHelpSpacer {
   112   width: 0.5em;
   113 }
   115 #pairDeviceThrobber > image,
   116 #login-throbber > image {
   117   list-style-image: url("chrome://global/skin/icons/loading_16.png");
   118 }
   120 #captchaFeedback {
   121   visibility: hidden;
   122 }
   124 #successPageIcon {
   125   /* TODO replace this with a 128px version (bug 591122) */
   126   list-style-image: url("chrome://browser/skin/sync-32.png");
   127 }

mercurial