| OLD | NEW |
| 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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 background-color: pink; | 350 background-color: pink; |
| 351 } | 351 } |
| 352 | 352 |
| 353 list > * { | 353 list > * { |
| 354 -webkit-box-align: center; | 354 -webkit-box-align: center; |
| 355 box-sizing: border-box; | 355 box-sizing: border-box; |
| 356 border-radius: 0px; | 356 border-radius: 0px; |
| 357 display: -webkit-box; | 357 display: -webkit-box; |
| 358 height: 32px; | 358 height: 32px; |
| 359 border: none; | 359 border: none; |
| 360 margin: 0; |
| 360 } | 361 } |
| 361 | 362 |
| 362 list:not([disabled]) > :hover { | 363 list:not([disabled]) > :hover { |
| 363 background-color: #f2f2f2; | 364 background-color: #f2f2f2; |
| 364 } | 365 } |
| 365 | 366 |
| 366 list > [selected], | 367 list > [selected], |
| 367 list:focus > [selected], | 368 list:focus > [selected], |
| 368 list:focus > [lead][selected], | 369 list:focus > [lead][selected], |
| 369 list > [selected]:hover { | 370 list > [selected]:hover { |
| 370 background-color: #f2f2f2; | 371 background-color: #f2f2f2; |
| 371 background-image: none; | 372 background-image: none; |
| 372 } | 373 } |
| 373 | 374 |
| 374 list > [lead][selected], | |
| 375 list:focus > [lead][selected] { | |
| 376 border-top: 1px solid #b2b2b2; | |
| 377 border-bottom: 1px solid #b2b2b2; | |
| 378 z-index: 3; | |
| 379 } | |
| 380 | |
| 381 list[disabled] > [lead][selected], | 375 list[disabled] > [lead][selected], |
| 382 list[disabled]:focus > [lead][selected] { | 376 list[disabled]:focus > [lead][selected] { |
| 383 border: none; | 377 border: none; |
| 384 } | 378 } |
| 385 | 379 |
| 386 list[disabled] { | 380 list[disabled] { |
| 387 opacity: 0.6; | 381 opacity: 0.6; |
| 388 } | 382 } |
| 389 | 383 |
| 390 list > .heading { | 384 list > .heading { |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 514 label.radio > span, | 508 label.radio > span, |
| 515 .suboption { | 509 .suboption { |
| 516 -webkit-margin-start: 16px; | 510 -webkit-margin-start: 16px; |
| 517 display: block; | 511 display: block; |
| 518 } | 512 } |
| 519 | 513 |
| 520 html[os=mac] label.checkbox > input, | 514 html[os=mac] label.checkbox > input, |
| 521 html[os=mac] label.radio > input { | 515 html[os=mac] label.radio > input { |
| 522 margin-top: 2px; | 516 margin-top: 2px; |
| 523 } | 517 } |
| OLD | NEW |