OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |