summaryrefslogtreecommitdiff
path: root/src/chrome/browser/syncSetup.css
diff options
context:
space:
mode:
authorLootyhoof <lootyhoofer@gmail.com>2015-11-19 23:02:12 +0000
committerLootyhoof <lootyhoofer@gmail.com>2015-11-19 23:02:12 +0000
commit274b11748f015db0f7c6276959602f6e8b30bb95 (patch)
treef1a9d61c609438d4e6116c3bbd4831e15538e1c5 /src/chrome/browser/syncSetup.css
Initial commit
Diffstat (limited to 'src/chrome/browser/syncSetup.css')
-rw-r--r--src/chrome/browser/syncSetup.css133
1 files changed, 133 insertions, 0 deletions
diff --git a/src/chrome/browser/syncSetup.css b/src/chrome/browser/syncSetup.css
new file mode 100644
index 0000000..ec1bc0f
--- /dev/null
+++ b/src/chrome/browser/syncSetup.css
@@ -0,0 +1,133 @@
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/. */
4
5wizard {
6 -moz-appearance: none;
7 width: 55em;
8 height: 45em;
9 padding: 0;
10 background-color: rgb(43,43,43);
11 color: #fff;
12}
13
14.wizard-page-box {
15 -moz-appearance: none;
16 padding-left: 0;
17 padding-right: 0;
18 margin: 0;
19}
20
21wizardpage {
22 -moz-box-pack: center;
23 -moz-box-align: center;
24 margin: 0;
25 padding: 0 6em;
26 background-color: rgb(43,43,43);
27}
28
29.wizard-header {
30 -moz-appearance: none;
31 border: none;
32 padding: 2em 0 1em 0;
33 text-align: center;
34}
35.wizard-header-label {
36 font-size: 24pt;
37 font-weight: normal;
38}
39
40.wizard-buttons {
41 background-color: rgba(0,0,0,0.1);
42 padding: 1em;
43}
44
45.wizard-buttons-separator {
46 visibility: collapse;
47}
48
49.wizard-header-icon {
50 visibility: collapse;
51}
52
53.accountChoiceButton {
54 font: menu;
55}
56
57.confirm {
58 border: 1px solid rgb(75,75,75);
59 padding: 1em;
60 border-radius: 5px;
61}
62
63/* Override the text-link style from global.css */
64description > .text-link,
65description > .text-link:focus {
66 margin: 0px;
67 padding: 0px;
68 border: 0px;
69}
70
71
72.success,
73.error {
74 padding: 2px;
75 border-radius: 2px;
76}
77
78.error {
79 background-color: #FF0000 !important;
80 color: #FFFFFF !important;
81}
82
83.success {
84 background-color: #00FF00 !important;
85}
86
87.warning {
88 font-weight: bold;
89 font-size: 100%;
90 color: red;
91}
92
93.mainDesc {
94 font-weight: bold;
95 font-size: 100%;
96}
97
98.normal {
99 font-size: 100%;
100}
101
102.inputColumn {
103 -moz-margin-end: 2px
104}
105
106.pin {
107 font-size: 18pt;
108 width: 4em;
109 text-align: center;
110}
111
112#passphraseHelpSpacer {
113 width: 0.5em;
114}
115
116#pairDeviceThrobber > image,
117#login-throbber > image {
118 list-style-image: url("chrome://global/skin/icons/loading_16.png");
119}
120
121#captchaFeedback {
122 visibility: hidden;
123}
124
125#successPageIcon {
126 /* TODO replace this with a 128px version (bug 591122) */
127 list-style-image: url("chrome://browser/skin/sync-32.png");
128}
129
130#tosDesc {
131 margin-left: -7px;
132 margin-bottom: 3px;
133} \ No newline at end of file