Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Side by Side Diff: chrome/browser/resources/options/sync_setup_overlay.css

Issue 7399015: Sync Promo: Add a way to collapse the sync promo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address review feedback Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 /* TODO(jhawkins): Organize these by page. */
2
3 #sync-setup-overlay * h4 {
4 margin: 5px 0;
5 }
6
7 #sync-setup-overlay * form {
8 -webkit-user-select: none;
9 }
10
11 #sync-setup-overlay * .content-area {
12 padding: 10px 15px;
13 }
14
15 .action-area-link-container {
16 -webkit-box-flex: 1;
17 }
18
19 .sync-customize-section-container {
20 margin: 5px 0 10px 0;
21 }
22
23 #sync-custom-passphrase {
24 margin: 0 25px;
25 }
26
27 #sync-passphrase-message {
28 color: gray;
29 }
30
31 .sync-custom-passphrase-input {
32 margin: 10px 0;
33 }
34
35 #sync-existing-passphrase-container {
36 background: #fff29e;
37 border: 1px solid #d4cdad;
38 padding: 10px;
39 }
40
41 #sync-select-container {
42 margin-bottom: 10px;
43 }
44
45 #sync-instructions-container {
46 margin-bottom: 30px;
47 }
48
49 #choose-data-types-body {
50 margin: 10px 0;
51 }
52
53 #choose-data-types-body > div {
54 -webkit-column-count: 3;
55 }
56
57 #sync-setup-overlay {
58 -webkit-user-select: none;
59 background-color: #fff;
60 margin-bottom: 6px;
61 margin-top: 6px;
62 width: 500px;
63 }
64
65 #sync-setup-overlay * a:link {
66 color: #00c;
67 }
68
69 #sync-setup-overlay * a:visited {
70 color: #551a8b;
71 }
72
73 #sync-setup-overlay * a:active {
74 color: #f00;
75 }
76
77 #sync-setup-overlay * hr {
78 background-color: #ddd;
79 border: 0;
80 height: 1px;
81 text-align: left;
82 width: 100%;
83 }
84
85 #sync-setup-overlay * input[type='button'],
86 #sync-setup-overlay * input[type='submit'] {
87 min-height: 26px;
88 min-width: 87px;
89 }
90
91 .end-aligned {
92 text-align: end;
93 }
94
95 #sync-setup-overlay * .throbber {
96 margin: 4px 10px;
97 vertical-align: middle;
98 visibility: hidden;
99 }
100
101 #gaia-account-text {
102 font-weight: bold;
103 }
104
105 #email-readonly {
106 font-weight: bold;
107 }
108
109 #sync-setup-overlay * div.errormsg {
110 color: red;
111 font-size: smaller;
112 }
113
114 #passphrase-encryption-message {
115 color: gray;
116 margin-bottom: 5px;
117 }
118
119 #passphrase-input {
120 margin-top: 5px;
121 margin-bottom: 5px;
122 }
123
124 #incorrect-passphrase {
125 margin-top: 5px;
126 }
127
128 #sync-setup-overlay * .error {
129 color: red;
130 }
131
132 .overlay-warning {
133 position: absolute;
134 left: 25px;
135 right: 25px;
136 top: 100px;
137 background: white;
138 border: 2px solid #888;
139 border-radius: 8px;
140 padding: 15px;
141 box-shadow: 0.2em 0.2em 0.5em #888;
142 }
143
144 #cancel-warning-header {
145 font-weight: bold;
146 margin-bottom: 8px;
147 }
148
149 .overlay-warning input {
150 margin-top: 12px;
151 float: right;
152 margin-left: 5px;
153 }
154
155 #sync-passphrase-warning {
156 margin-bottom: 5px;
157 }
158
159 div.error-msg-spacer {
160 min-height: 1em;
161 }
162
163 #gaia-login-form {
164 margin-bottom: 0;
165 }
166
167 #captcha-wrapper {
168 background: no-repeat;
169 background-color: #e8eefa;
170 background-position: center;
171 background-size: 200px 70px;
172 }
173
174 #captcha-image {
175 height: 70px;
176 width: 200px;
177 }
178
179 #logging-in-throbber {
180 margin: 0 10px;
181 }
182
183 .bottom-padded-cell {
184 padding-bottom: 3px;
185 }
186
187 .no-vertical-padding {
188 padding-bottom: 0;
189 padding-top: 0;
190 }
191
192 #cancel-space-no-captcha {
193 height: 22px;
194 }
195
196 #top-blurb {
197 line-height: 1.5em;
198 }
199
200 #top-blurb-error {
201 background-color: #eeb939;
202 border-radius: 4px;
203 display: block;
204 font-weight: bold;
205 margin-bottom: 10px;
206 margin-left: auto;
207 margin-right: auto;
208 padding: 4px 10px;
209 text-align: center;
210 visibility: hidden;
211 width: 70%;
212 }
213
214 #content-table {
215 background-color: #fff;
216 border: #c3d9ff 1px solid;
217 padding: 2px;
218 }
219
220 .access-code-row > td {
221 padding-bottom: 1px;
222 text-align: center;
223 }
224
225 #access-code-label-row > td {
226 padding-top: 6px;
227 }
228
229 #captcha-instructions {
230 margin-bottom: 5px;
231 white-space: normal;
232 }
233
234 #password-row {
235 margin-top: 2px;
236 }
237
238 #action-area {
239 margin-top: 2px;
240 }
241
242 #errormsg-0-access-code {
243 text-align: center;
244 }
245
246 #sync-setup-configure {
247 line-height: 1.33em;
248 background: #FFFFFF;
249 }
250
251 html[os='mac'] #sync-setup-configure {
252 line-height: 1.5em;
253 }
254
255 #choose-data-types-form {
256 -webkit-user-select: none;
257 }
258
259 #chooseDataTypesRadio {
260 vertical-align: top;
261 }
262
263 #chooseDataTypes > div {
264 display: inline-block;
265 }
266
267 .sync-item-show {
268 display: block;
269 white-space: nowrap;
270 }
271
272 .sync-item-show > label {
273 overflow: hidden;
274 white-space: nowrap;
275 text-overflow: ellipsis;
276 display: inline-block;
277 width: 92%;
278 }
279
280 .sync-item-hide {
281 display: none;
282 }
283
284 .sync-label-inactive {
285 color: #9b9b9b;
286 }
287
288 .sync-label-active {
289 color: #000;
290 }
291
292 .sync-data-types {
293 margin-left: 5px;
294 }
295
296 .sync-configuration-errors {
297 margin-top: 5px;
298 }
299
300 .sync-configuration-error {
301 width: 80%;
302 margin-left: auto;
303 margin-right: auto;
304 text-align: center;
305 padding: 1px 10px;
306 background-color: #eeb939;
307 border-radius: 4px;
308 font-weight: bold;
309 }
310
311 #learn-more-link {
312 float: right;
313 }
314
315 html[dir='rtl'] #learn-more-link {
316 float: left;
317 }
318
319 #customize-link, #use-default-link {
320 -webkit-transition: opacity .25s;
321 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698