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 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
581 border: 1px solid #aaa; | 581 border: 1px solid #aaa; |
582 font-size: inherit; | 582 font-size: inherit; |
583 padding: 3px; | 583 padding: 3px; |
584 } | 584 } |
585 | 585 |
586 /* BUTTON */ | 586 /* BUTTON */ |
587 button, | 587 button, |
588 input[type='submit'] { | 588 input[type='submit'] { |
589 -webkit-border-radius: 2px; | 589 -webkit-border-radius: 2px; |
590 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); | 590 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); |
| 591 -webkit-user-select: none; |
591 background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5); | 592 background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5); |
592 border: 1px solid #aaa; | 593 border: 1px solid #aaa; |
593 color: #444; | 594 color: #444; |
594 font-size: inherit; | 595 font-size: inherit; |
595 margin-bottom: 0px; | 596 margin-bottom: 0px; |
596 min-width: 4em; | 597 min-width: 4em; |
597 padding: 3px 12px 3px 12px; | 598 padding: 3px 12px 3px 12px; |
598 } | 599 } |
599 | 600 |
600 button:hover, | 601 button:hover, |
(...skipping 19 matching lines...) Expand all Loading... |
620 background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5); | 621 background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5); |
621 border-color: #aaa; | 622 border-color: #aaa; |
622 color: #888; | 623 color: #888; |
623 } | 624 } |
624 | 625 |
625 /* SELECT */ | 626 /* SELECT */ |
626 select { | 627 select { |
627 -webkit-appearance: button; | 628 -webkit-appearance: button; |
628 -webkit-border-radius: 2px; | 629 -webkit-border-radius: 2px; |
629 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); | 630 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); |
| 631 -webkit-user-select: none; |
630 background-image: url("select.png"), -webkit-linear-gradient(#fafafa, #f4f4f4
40%, #e5e5e5); | 632 background-image: url("select.png"), -webkit-linear-gradient(#fafafa, #f4f4f4
40%, #e5e5e5); |
631 background-position: center right; | 633 background-position: center right; |
632 background-repeat: no-repeat; | 634 background-repeat: no-repeat; |
633 border: 1px solid #aaa; | 635 border: 1px solid #aaa; |
634 color: #555; | 636 color: #555; |
635 font-size: inherit; | 637 font-size: inherit; |
636 margin: 0; | 638 margin: 0; |
637 overflow: hidden; | 639 overflow: hidden; |
638 padding: 2px 20px 2px 5px; | 640 padding: 2px 20px 2px 5px; |
639 text-overflow: ellipsis; | 641 text-overflow: ellipsis; |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
676 } | 678 } |
677 | 679 |
678 html[os=mac] label > input[type=checkbox], | 680 html[os=mac] label > input[type=checkbox], |
679 html[os=mac] label > input[type=radio] { | 681 html[os=mac] label > input[type=radio] { |
680 margin-top: 2px; | 682 margin-top: 2px; |
681 } | 683 } |
682 | 684 |
683 .suboption { | 685 .suboption { |
684 -webkit-margin-start: 16px; | 686 -webkit-margin-start: 16px; |
685 } | 687 } |
OLD | NEW |