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/options/options_page.css

Issue 6327021: DOMUI: Don't show the close button on list items if the item is not selected. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 body { 1 body {
2 cursor: default; 2 cursor: default;
3 font-size: 100%; 3 font-size: 100%;
4 } 4 }
5 5
6 a:link { 6 a:link {
7 color: rgb(63, 110, 194); 7 color: rgb(63, 110, 194);
8 } 8 }
9 9
10 a:active { 10 a:active {
(...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 /* TODO(stuartmorgan): Replace with real images once they are available. */ 466 /* TODO(stuartmorgan): Replace with real images once they are available. */
467 background-image: url("../../../app/theme/close_bar.png"); 467 background-image: url("../../../app/theme/close_bar.png");
468 border: none; 468 border: none;
469 display: block; 469 display: block;
470 height: 16px; 470 height: 16px;
471 opacity: 1; 471 opacity: 1;
472 width: 16px; 472 width: 16px;
473 } 473 }
474 474
475 list > *:not(:hover):not([lead]) .close-button, 475 list > *:not(:hover):not([lead]) .close-button,
476 list > *:not(:hover):not([selected]) .close-button,
476 list[disabled] .close-button, 477 list[disabled] .close-button,
477 list .close-button[disabled] { 478 list .close-button[disabled] {
478 opacity: 0; 479 opacity: 0;
479 pointer-events: none; 480 pointer-events: none;
480 } 481 }
481 482
482 list .close-button:hover { 483 list .close-button:hover {
483 background-image: url("../../../app/theme/close_bar_h.png"); 484 background-image: url("../../../app/theme/close_bar_h.png");
484 } 485 }
485 486
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
676 } 677 }
677 678
678 html[os=mac] label > input[type=checkbox], 679 html[os=mac] label > input[type=checkbox],
679 html[os=mac] label > input[type=radio] { 680 html[os=mac] label > input[type=radio] {
680 margin-top: 2px; 681 margin-top: 2px;
681 } 682 }
682 683
683 .suboption { 684 .suboption {
684 -webkit-margin-start: 16px; 685 -webkit-margin-start: 16px;
685 } 686 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698