| OLD | NEW |
| 1 body { | 1 body { |
| 2 cursor: default; | 2 cursor: default; |
| 3 font-size: 13px; | 3 font-size: 13px; |
| 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 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 display: -webkit-box; | 423 display: -webkit-box; |
| 424 height: 32px; | 424 height: 32px; |
| 425 border: none; | 425 border: none; |
| 426 margin: 0; | 426 margin: 0; |
| 427 } | 427 } |
| 428 | 428 |
| 429 list:not([disabled]) > :hover { | 429 list:not([disabled]) > :hover { |
| 430 background-color: #e4ecf7; | 430 background-color: #e4ecf7; |
| 431 } | 431 } |
| 432 | 432 |
| 433 /* TODO(stuartmorgan): Once this becomes the list style for other DOMUI pages | 433 /* TODO(stuartmorgan): Once this becomes the list style for other WebUI pages |
| 434 * these rules can be simplified (since they wont need to override other rules). | 434 * these rules can be simplified (since they wont need to override other rules). |
| 435 */ | 435 */ |
| 436 | 436 |
| 437 list:not([hasElementFocus]) > [selected], | 437 list:not([hasElementFocus]) > [selected], |
| 438 list:not([hasElementFocus]) > [lead][selected] { | 438 list:not([hasElementFocus]) > [lead][selected] { |
| 439 background-color: #d0d0d0; | 439 background-color: #d0d0d0; |
| 440 background-image: none; | 440 background-image: none; |
| 441 } | 441 } |
| 442 | 442 |
| 443 list[hasElementFocus] > [selected], | 443 list[hasElementFocus] > [selected], |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 721 } | 721 } |
| 722 | 722 |
| 723 html[os=mac] label > input[type=checkbox], | 723 html[os=mac] label > input[type=checkbox], |
| 724 html[os=mac] label > input[type=radio] { | 724 html[os=mac] label > input[type=radio] { |
| 725 margin-top: 2px; | 725 margin-top: 2px; |
| 726 } | 726 } |
| 727 | 727 |
| 728 .suboption { | 728 .suboption { |
| 729 -webkit-margin-start: 16px; | 729 -webkit-margin-start: 16px; |
| 730 } | 730 } |
| OLD | NEW |