Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | wizard { |
michael@0 | 6 | -moz-appearance: none; |
michael@0 | 7 | width: 55em; |
michael@0 | 8 | height: 45em; |
michael@0 | 9 | padding: 0; |
michael@0 | 10 | background-color: Window; |
michael@0 | 11 | } |
michael@0 | 12 | |
michael@0 | 13 | .wizard-page-box { |
michael@0 | 14 | -moz-appearance: none; |
michael@0 | 15 | padding-left: 0; |
michael@0 | 16 | padding-right: 0; |
michael@0 | 17 | margin: 0; |
michael@0 | 18 | } |
michael@0 | 19 | |
michael@0 | 20 | wizardpage { |
michael@0 | 21 | -moz-box-pack: center; |
michael@0 | 22 | -moz-box-align: center; |
michael@0 | 23 | margin: 0; |
michael@0 | 24 | padding: 0 6em; |
michael@0 | 25 | background-color: Window; |
michael@0 | 26 | } |
michael@0 | 27 | |
michael@0 | 28 | .wizard-header { |
michael@0 | 29 | -moz-appearance: none; |
michael@0 | 30 | border: none; |
michael@0 | 31 | padding: 2em 0 1em 0; |
michael@0 | 32 | text-align: center; |
michael@0 | 33 | } |
michael@0 | 34 | .wizard-header-label { |
michael@0 | 35 | font-size: 24pt; |
michael@0 | 36 | font-weight: normal; |
michael@0 | 37 | } |
michael@0 | 38 | |
michael@0 | 39 | .wizard-buttons { |
michael@0 | 40 | background-color: rgba(0,0,0,0.1); |
michael@0 | 41 | padding: 1em; |
michael@0 | 42 | } |
michael@0 | 43 | |
michael@0 | 44 | .wizard-buttons-separator { |
michael@0 | 45 | visibility: collapse; |
michael@0 | 46 | } |
michael@0 | 47 | |
michael@0 | 48 | .wizard-header-icon { |
michael@0 | 49 | visibility: collapse; |
michael@0 | 50 | } |
michael@0 | 51 | |
michael@0 | 52 | .accountChoiceButton { |
michael@0 | 53 | font: menu; |
michael@0 | 54 | } |
michael@0 | 55 | |
michael@0 | 56 | .confirm { |
michael@0 | 57 | border: 1px solid black; |
michael@0 | 58 | padding: 1em; |
michael@0 | 59 | border-radius: 5px; |
michael@0 | 60 | } |
michael@0 | 61 | |
michael@0 | 62 | /* Override the text-link style from global.css */ |
michael@0 | 63 | description > .text-link, |
michael@0 | 64 | description > .text-link:focus { |
michael@0 | 65 | margin: 0px; |
michael@0 | 66 | padding: 0px; |
michael@0 | 67 | border: 0px; |
michael@0 | 68 | } |
michael@0 | 69 | |
michael@0 | 70 | |
michael@0 | 71 | .success, |
michael@0 | 72 | .error { |
michael@0 | 73 | padding: 2px; |
michael@0 | 74 | border-radius: 2px; |
michael@0 | 75 | } |
michael@0 | 76 | |
michael@0 | 77 | .error { |
michael@0 | 78 | background-color: #FF0000 !important; |
michael@0 | 79 | color: #FFFFFF !important; |
michael@0 | 80 | } |
michael@0 | 81 | |
michael@0 | 82 | .success { |
michael@0 | 83 | background-color: #00FF00 !important; |
michael@0 | 84 | } |
michael@0 | 85 | |
michael@0 | 86 | .warning { |
michael@0 | 87 | font-weight: bold; |
michael@0 | 88 | font-size: 100%; |
michael@0 | 89 | color: red; |
michael@0 | 90 | } |
michael@0 | 91 | |
michael@0 | 92 | .mainDesc { |
michael@0 | 93 | font-weight: bold; |
michael@0 | 94 | font-size: 100%; |
michael@0 | 95 | } |
michael@0 | 96 | |
michael@0 | 97 | .normal { |
michael@0 | 98 | font-size: 100%; |
michael@0 | 99 | } |
michael@0 | 100 | |
michael@0 | 101 | .inputColumn { |
michael@0 | 102 | -moz-margin-end: 2px |
michael@0 | 103 | } |
michael@0 | 104 | |
michael@0 | 105 | .pin { |
michael@0 | 106 | font-size: 18pt; |
michael@0 | 107 | width: 4em; |
michael@0 | 108 | text-align: center; |
michael@0 | 109 | } |
michael@0 | 110 | |
michael@0 | 111 | #passphraseHelpSpacer { |
michael@0 | 112 | width: 0.5em; |
michael@0 | 113 | } |
michael@0 | 114 | |
michael@0 | 115 | #pairDeviceThrobber > image, |
michael@0 | 116 | #login-throbber > image { |
michael@0 | 117 | list-style-image: url("chrome://global/skin/icons/loading_16.png"); |
michael@0 | 118 | } |
michael@0 | 119 | |
michael@0 | 120 | #captchaFeedback { |
michael@0 | 121 | visibility: hidden; |
michael@0 | 122 | } |
michael@0 | 123 | |
michael@0 | 124 | #successPageIcon { |
michael@0 | 125 | /* TODO replace this with a 128px version (bug 591122) */ |
michael@0 | 126 | list-style-image: url("chrome://browser/skin/sync-32.png"); |
michael@0 | 127 | } |
michael@0 | 128 | |
michael@0 | 129 | #tosDesc { |
michael@0 | 130 | margin-left: -7px; |
michael@0 | 131 | margin-bottom: 3px; |
michael@0 | 132 | } |