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 #settings-title { | 6 #settings-title { |
7 -webkit-padding-end: 24px; | 7 -webkit-padding-end: 24px; |
8 color: #53637d; | 8 color: #53637d; |
9 cursor: pointer; | 9 cursor: pointer; |
10 font-size: 200%; | 10 font-size: 200%; |
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
382 list:focus > [lead], | 382 list:focus > [lead], |
383 list:focus > [lead][selected], | 383 list:focus > [lead][selected], |
384 list [lead][selected][editing] { | 384 list [lead][selected][editing] { |
385 border-top: 1px solid #7892b4; | 385 border-top: 1px solid #7892b4; |
386 border-bottom: 1px solid #7892b4; | 386 border-bottom: 1px solid #7892b4; |
387 } | 387 } |
388 | 388 |
389 list:focus > [lead]:nth-child(2), | 389 list:focus > [lead]:nth-child(2), |
390 list:focus > [lead][selected]:nth-child(2), | 390 list:focus > [lead][selected]:nth-child(2), |
391 list [lead][selected][editing]:nth-child(2) { | 391 list [lead][selected][editing]:nth-child(2) { |
392 border-top: 1px transparent; | 392 border-top: 1px solid transparent; |
393 } | 393 } |
394 | 394 |
395 list:focus > [lead]:nth-last-child(2), | 395 list:focus > [lead]:nth-last-child(2), |
396 list:focus > [lead][selected]:nth-last-child(2), | 396 list:focus > [lead][selected]:nth-last-child(2), |
397 list [lead][selected][editing]:nth-last-child(2) { | 397 list [lead][selected][editing]:nth-last-child(2) { |
398 border-bottom: 1px transparent; | 398 border-bottom: 1px solid transparent; |
399 } | 399 } |
400 | 400 |
401 list[disabled] > [lead][selected], | 401 list[disabled] > [lead][selected], |
402 list[disabled]:focus > [lead][selected] { | 402 list[disabled]:focus > [lead][selected] { |
403 border: none; | 403 border: none; |
404 } | 404 } |
405 | 405 |
406 list[disabled] { | 406 list[disabled] { |
407 opacity: 0.6; | 407 opacity: 0.6; |
408 } | 408 } |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
526 /* UI Controls */ | 526 /* UI Controls */ |
527 | 527 |
528 button:focus, | 528 button:focus, |
529 input:focus, | 529 input:focus, |
530 input[type='submit']:focus, | 530 input[type='submit']:focus, |
531 select:focus { | 531 select:focus { |
532 outline-color: rgba(0, 128, 256, 0.5); | 532 outline-color: rgba(0, 128, 256, 0.5); |
533 } | 533 } |
534 | 534 |
535 /* TEXT */ | 535 /* TEXT */ |
| 536 input[type='password], |
536 input[type='text'] { | 537 input[type='text'] { |
537 -webkit-border-radius: 2px; | 538 -webkit-border-radius: 2px; |
538 border: 1px solid #aaa; | 539 border: 1px solid #aaa; |
539 font-size: inherit; | 540 font-size: inherit; |
540 padding: 3px; | 541 padding: 3px; |
541 } | 542 } |
542 | 543 |
543 /* BUTTON */ | 544 /* BUTTON */ |
544 button, | 545 button, |
545 input[type='submit'] { | 546 input[type='submit'] { |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
633 } | 634 } |
634 | 635 |
635 html[os=mac] label > input[type=checkbox], | 636 html[os=mac] label > input[type=checkbox], |
636 html[os=mac] label > input[type=radio] { | 637 html[os=mac] label > input[type=radio] { |
637 margin-top: 2px; | 638 margin-top: 2px; |
638 } | 639 } |
639 | 640 |
640 .suboption { | 641 .suboption { |
641 -webkit-margin-start: 16px; | 642 -webkit-margin-start: 16px; |
642 } | 643 } |
OLD | NEW |