| 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 650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 661 input[type='password'], | 661 input[type='password'], |
| 662 input[type='text'], | 662 input[type='text'], |
| 663 input[type='url'], | 663 input[type='url'], |
| 664 input:not([type]) { | 664 input:not([type]) { |
| 665 -webkit-border-radius: 2px; | 665 -webkit-border-radius: 2px; |
| 666 border: 1px solid #aaa; | 666 border: 1px solid #aaa; |
| 667 font-size: inherit; | 667 font-size: inherit; |
| 668 padding: 3px; | 668 padding: 3px; |
| 669 } | 669 } |
| 670 | 670 |
| 671 /* SELECT */ | |
| 672 select { | |
| 673 -webkit-appearance: button; | |
| 674 -webkit-border-radius: 2px; | |
| 675 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); | |
| 676 -webkit-padding-end: 20px; | |
| 677 -webkit-padding-start: 2px; | |
| 678 -webkit-user-select: none; | |
| 679 background-image: url("select.png"), -webkit-linear-gradient(#fafafa, #f4f4f4
40%, #e5e5e5); | |
| 680 background-position: center right; | |
| 681 background-repeat: no-repeat; | |
| 682 border: 1px solid #aaa; | |
| 683 color: #555; | |
| 684 font-size: inherit; | |
| 685 margin: 0; | |
| 686 overflow: hidden; | |
| 687 padding-top: 2px; | |
| 688 padding-bottom: 2px; | |
| 689 text-overflow: ellipsis; | |
| 690 white-space: nowrap; | |
| 691 } | |
| 692 | |
| 693 select:disabled { | |
| 694 color: graytext; | |
| 695 } | |
| 696 | |
| 697 html[dir='rtl'] select { | |
| 698 background-position: center left; | |
| 699 } | |
| 700 | |
| 701 select:enabled:hover { | |
| 702 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2); | |
| 703 background-image: url("select.png"), -webkit-linear-gradient(#fefefe, #f8f8f8
40%, #e9e9e9); | |
| 704 color: #333; | |
| 705 } | |
| 706 | |
| 707 select:enabled:active { | |
| 708 -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2); | |
| 709 background-image: url("select.png"), -webkit-linear-gradient(#f4f4f4, #efefef
40%, #dcdcdc); | |
| 710 color: #444; | |
| 711 } | |
| 712 | |
| 713 /* CHECKBOX, RADIO */ | 671 /* CHECKBOX, RADIO */ |
| 714 input[type=checkbox], | 672 input[type=checkbox], |
| 715 input[type=radio] { | 673 input[type=radio] { |
| 716 margin-left: 0; | 674 margin-left: 0; |
| 717 margin-right: 0; | 675 margin-right: 0; |
| 718 position: relative; | 676 position: relative; |
| 719 top: 1px; | 677 top: 1px; |
| 720 } | 678 } |
| 721 | 679 |
| 722 /* Checkbox and radio buttons have different sizes on different platforms. The | 680 /* Checkbox and radio buttons have different sizes on different platforms. The |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 808 .displaytable > section > * { | 766 .displaytable > section > * { |
| 809 display: table-cell; | 767 display: table-cell; |
| 810 vertical-align: baseline; | 768 vertical-align: baseline; |
| 811 border-bottom: 1px solid #eeeeee; | 769 border-bottom: 1px solid #eeeeee; |
| 812 } | 770 } |
| 813 | 771 |
| 814 /* do not display a border after the last section in the table */ | 772 /* do not display a border after the last section in the table */ |
| 815 .displaytable > section:last-child > * { | 773 .displaytable > section:last-child > * { |
| 816 border-bottom: none; | 774 border-bottom: none; |
| 817 } | 775 } |
| OLD | NEW |