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 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 } | 371 } |
372 | 372 |
373 list > [selected], | 373 list > [selected], |
374 list:focus > [selected], | 374 list:focus > [selected], |
375 list:focus > [lead][selected], | 375 list:focus > [lead][selected], |
376 list > [selected]:hover { | 376 list > [selected]:hover { |
377 background-color: #f2f2f2; | 377 background-color: #f2f2f2; |
378 background-image: none; | 378 background-image: none; |
379 } | 379 } |
380 | 380 |
| 381 list:focus > [lead], |
| 382 list:focus > [lead][selected] { |
| 383 border-top: 1px solid #b2b2b2; |
| 384 border-bottom: 1px solid #b2b2b2; |
| 385 } |
| 386 |
| 387 list:focus > [lead]:nth-child(2), |
| 388 list:focus > [lead][selected]:nth-child(2) { |
| 389 border-top: 1px solid #f2f2f2; |
| 390 } |
| 391 |
| 392 list:focus > [lead]:nth-last-child(2), |
| 393 list:focus > [lead][selected]:nth-last-child(2) { |
| 394 border-bottom: 1px solid #f2f2f2; |
| 395 } |
| 396 |
381 list[disabled] > [lead][selected], | 397 list[disabled] > [lead][selected], |
382 list[disabled]:focus > [lead][selected] { | 398 list[disabled]:focus > [lead][selected] { |
383 border: none; | 399 border: none; |
384 } | 400 } |
385 | 401 |
386 list[disabled] { | 402 list[disabled] { |
387 opacity: 0.6; | 403 opacity: 0.6; |
388 } | 404 } |
389 | 405 |
390 list > .heading { | 406 list > .heading { |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
504 } | 520 } |
505 | 521 |
506 .suboption { | 522 .suboption { |
507 -webkit-margin-start: 16px; | 523 -webkit-margin-start: 16px; |
508 } | 524 } |
509 | 525 |
510 html[os=mac] label > input[type=checkbox], | 526 html[os=mac] label > input[type=checkbox], |
511 html[os=mac] label > input[type=radio] { | 527 html[os=mac] label > input[type=radio] { |
512 margin-top: 2px; | 528 margin-top: 2px; |
513 } | 529 } |
OLD | NEW |