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

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

Issue 10186011: Sync UI: Fix up the HTML by moving divs outside of the label. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove include. Created 8 years, 8 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
« no previous file with comments | « no previous file | chrome/browser/resources/sync_setup_overlay.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 /* TODO(jhawkins): Organize these by page. */ 5 /* TODO(jhawkins): Organize these by page. */
6 6
7 #sync-setup-overlay * h4 { 7 #sync-setup-overlay * h4 {
8 margin: 5px 0; 8 margin: 5px 0;
9 } 9 }
10 10
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 right: 0; 291 right: 0;
292 top: 1px; 292 top: 1px;
293 width: 52px; 293 width: 52px;
294 } 294 }
295 295
296 html[dir='rtl'] #signin-header-logo { 296 html[dir='rtl'] #signin-header-logo {
297 left: 0; 297 left: 0;
298 right: auto; 298 right: auto;
299 } 299 }
300 300
301 #email-row,
302 #email-readonly-row,
303 #password-row {
304 margin: 0 0 1.5em;
305 }
306
301 /* Sign in buttons. */ 307 /* Sign in buttons. */
302 308
303 .signin-box input[type=submit] { 309 .signin-box input[type=submit] {
304 -webkit-margin-end: 0.4em; 310 -webkit-margin-end: 0.4em;
305 -webkit-margin-start: 0; 311 -webkit-margin-start: 0;
306 -webkit-transition: all 218ms; 312 -webkit-transition: all 218ms;
307 -webkit-user-select: none; 313 -webkit-user-select: none;
308 background-image: -webkit-linear-gradient(top, rgb(77, 144, 254), 314 background-image: -webkit-linear-gradient(top, rgb(77, 144, 254),
309 rgb(71, 135, 237)); 315 rgb(71, 135, 237));
310 border: 1px solid rgb(48, 121, 237); 316 border: 1px solid rgb(48, 121, 237);
311 border-radius: 2px; 317 border-radius: 2px;
312 color: white; 318 color: white;
313 display: inline-block; 319 display: inline-block;
314 font-size: 13px; 320 font-size: 13px;
315 font-weight: bold; 321 font-weight: bold;
316 height: 32px; 322 height: 32px;
317 line-height: 27px; 323 line-height: 27px;
324 margin-bottom: 1.2em;
318 margin-top: 0; 325 margin-top: 0;
319 margin-bottom: 1.2em;
320 min-width: 54px !important; 326 min-width: 54px !important;
321 padding: 0 8px; 327 padding: 0 8px;
322 } 328 }
323 329
324 .signin-box input[type=submit]:hover { 330 .signin-box input[type=submit]:hover {
325 -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); 331 -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
326 -webkit-transition: all 0; 332 -webkit-transition: all 0;
327 background-image: -webkit-linear-gradient(top, rgb(77, 144, 254), 333 background-image: -webkit-linear-gradient(top, rgb(77, 144, 254),
328 rgb(53, 122, 232)); 334 rgb(53, 122, 232));
329 border-color: rgb(47, 91, 183); 335 border-color: rgb(47, 91, 183);
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 438
433 /* Sign in text. */ 439 /* Sign in text. */
434 440
435 .signin-box strong { 441 .signin-box strong {
436 color: #222; 442 color: #222;
437 display: block; 443 display: block;
438 } 444 }
439 445
440 .signin-box label { 446 .signin-box label {
441 display: block; 447 display: block;
442 margin: 0 0 1.5em; 448 font-weight: bold;
443 } 449 }
444 450
445 /* Sign in miscellaneous. */ 451 /* Sign in miscellaneous. */
446 452
447 .signin-box .throbber { 453 .signin-box .throbber {
448 float: right; 454 float: right;
449 } 455 }
450 456
451 html[dir='rtl'] .signin-box .throbber { 457 html[dir='rtl'] .signin-box .throbber {
452 float: left; 458 float: left;
(...skipping 23 matching lines...) Expand all
476 } 482 }
477 483
478 .signin-box .help-link:visited { 484 .signin-box .help-link:visited {
479 color: white !important; 485 color: white !important;
480 } 486 }
481 487
482 .signin-box .help-link:hover { 488 .signin-box .help-link:hover {
483 color: white !important; 489 color: white !important;
484 opacity: .7; 490 opacity: .7;
485 } 491 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/sync_setup_overlay.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698