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

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

Issue 5935003: DOMUI: Implement new-style password manager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Whitespace. Created 10 years 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
1 body { 1 body {
2 -webkit-user-select: none; 2 -webkit-user-select: none;
3 cursor: default; 3 cursor: default;
4 font-size: 100%; 4 font-size: 100%;
5 } 5 }
6 6
7 #settings-title { 7 #settings-title {
8 -webkit-padding-end: 24px; 8 -webkit-padding-end: 24px;
9 color: #53637d; 9 color: #53637d;
10 font-size: 200%; 10 font-size: 200%;
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 list > .heading { 390 list > .heading {
391 color: #666666; 391 color: #666666;
392 } 392 }
393 393
394 list > .heading:hover { 394 list > .heading:hover {
395 background-color: transparent; 395 background-color: transparent;
396 border-color: transparent; 396 border-color: transparent;
397 } 397 }
398 398
399 list .deletable-item { 399 list .deletable-item {
400 -webkit-box-align: center;
401 -webkit-box-flex: 1;
400 display: -webkit-box; 402 display: -webkit-box;
401 } 403 }
402 404
403 list .deletable-item > :first-child {
404 -webkit-box-flex: 1;
405 }
406
407 list .close-button { 405 list .close-button {
408 background-color: transparent; 406 background-color: transparent;
409 /* TODO(stuartmorgan): Replace with real images once they are available. */ 407 /* TODO(stuartmorgan): Replace with real images once they are available. */
410 background-image: url("../../../app/theme/close_bar.png"); 408 background-image: url("../../../app/theme/close_bar.png");
411 border: none; 409 border: none;
412 height: 16px; 410 height: 16px;
413 width: 16px; 411 width: 16px;
414 } 412 }
415 413
416 list > *:not(:hover) .close-button, list[disabled] .close-button { 414 list > *:not(:hover) .close-button, list[disabled] .close-button {
417 display: none; 415 visibility: hidden;
418 } 416 }
419 417
420 list .close-button:hover { 418 list .close-button:hover {
421 background-image: url("../../../app/theme/close_bar_h.png"); 419 background-image: url("../../../app/theme/close_bar_h.png");
422 } 420 }
423 421
424 list .close-button:active { 422 list .close-button:active {
425 background-image: url("../../../app/theme/close_bar_p.png"); 423 background-image: url("../../../app/theme/close_bar_p.png");
426 } 424 }
427 425
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
514 label.radio > span, 512 label.radio > span,
515 .suboption { 513 .suboption {
516 -webkit-margin-start: 16px; 514 -webkit-margin-start: 16px;
517 display: block; 515 display: block;
518 } 516 }
519 517
520 html[os=mac] label.checkbox > input, 518 html[os=mac] label.checkbox > input,
521 html[os=mac] label.radio > input { 519 html[os=mac] label.radio > input {
522 margin-top: 2px; 520 margin-top: 2px;
523 } 521 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698