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

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: Review fixes. 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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 list > .heading { 384 list > .heading {
385 color: #666666; 385 color: #666666;
386 } 386 }
387 387
388 list > .heading:hover { 388 list > .heading:hover {
389 background-color: transparent; 389 background-color: transparent;
390 border-color: transparent; 390 border-color: transparent;
391 } 391 }
392 392
393 list .deletable-item { 393 list .deletable-item {
394 -webkit-box-align: center;
395 -webkit-box-flex: 1;
394 display: -webkit-box; 396 display: -webkit-box;
395 } 397 }
396 398
397 list .deletable-item > :first-child {
398 -webkit-box-flex: 1;
399 }
400
401 list .close-button { 399 list .close-button {
402 background-color: transparent; 400 background-color: transparent;
403 /* TODO(stuartmorgan): Replace with real images once they are available. */ 401 /* TODO(stuartmorgan): Replace with real images once they are available. */
404 background-image: url("../../../app/theme/close_bar.png"); 402 background-image: url("../../../app/theme/close_bar.png");
405 border: none; 403 border: none;
406 height: 16px; 404 height: 16px;
407 width: 16px; 405 width: 16px;
408 } 406 }
409 407
410 list > *:not(:hover) .close-button, list[disabled] .close-button { 408 list > *:not(:hover) .close-button, list[disabled] .close-button {
411 display: none; 409 visibility: hidden;
arv (Not doing code reviews) 2010/12/17 20:07:34 Now that we control this using visibility maybe we
James Hawkins 2010/12/17 21:32:40 Can you describe the entire flow that you're imagi
412 } 410 }
413 411
414 list .close-button:hover { 412 list .close-button:hover {
415 background-image: url("../../../app/theme/close_bar_h.png"); 413 background-image: url("../../../app/theme/close_bar_h.png");
416 } 414 }
417 415
418 list .close-button:active { 416 list .close-button:active {
419 background-image: url("../../../app/theme/close_bar_p.png"); 417 background-image: url("../../../app/theme/close_bar_p.png");
420 } 418 }
421 419
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
508 label.radio > span, 506 label.radio > span,
509 .suboption { 507 .suboption {
510 -webkit-margin-start: 16px; 508 -webkit-margin-start: 16px;
511 display: block; 509 display: block;
512 } 510 }
513 511
514 html[os=mac] label.checkbox > input, 512 html[os=mac] label.checkbox > input,
515 html[os=mac] label.radio > input { 513 html[os=mac] label.radio > input {
516 margin-top: 2px; 514 margin-top: 2px;
517 } 515 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698