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

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

Issue 6317005: DOMUI Prefs: Add delete/backspace handling to deletable item lists (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Improve comment Created 9 years, 11 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
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 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 -webkit-transition: .15s opacity; 430 -webkit-transition: .15s opacity;
431 background-color: transparent; 431 background-color: transparent;
432 /* TODO(stuartmorgan): Replace with real images once they are available. */ 432 /* TODO(stuartmorgan): Replace with real images once they are available. */
433 background-image: url("../../../app/theme/close_bar.png"); 433 background-image: url("../../../app/theme/close_bar.png");
434 border: none; 434 border: none;
435 height: 16px; 435 height: 16px;
436 opacity: 1; 436 opacity: 1;
437 width: 16px; 437 width: 16px;
438 } 438 }
439 439
440 list > *:not(:hover):not([editing]) .close-button, 440 list > *:not(:hover):not([lead]) .close-button,
441 list[disabled] .close-button, 441 list[disabled] .close-button,
442 list .close-button[disabled] { 442 list .close-button[disabled] {
443 opacity: 0; 443 opacity: 0;
444 pointer-events: none; 444 pointer-events: none;
445 } 445 }
446 446
447 list .close-button:hover { 447 list .close-button:hover {
448 background-image: url("../../../app/theme/close_bar_h.png"); 448 background-image: url("../../../app/theme/close_bar_h.png");
449 } 449 }
450 450
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 } 544 }
545 545
546 .suboption { 546 .suboption {
547 -webkit-margin-start: 16px; 547 -webkit-margin-start: 16px;
548 } 548 }
549 549
550 html[os=mac] label > input[type=checkbox], 550 html[os=mac] label > input[type=checkbox],
551 html[os=mac] label > input[type=radio] { 551 html[os=mac] label > input[type=radio] {
552 margin-top: 2px; 552 margin-top: 2px;
553 } 553 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698