| 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 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 656 input[type='password'], | 656 input[type='password'], |
| 657 input[type='text'], | 657 input[type='text'], |
| 658 input[type='url'], | 658 input[type='url'], |
| 659 input:not([type]) { | 659 input:not([type]) { |
| 660 -webkit-border-radius: 2px; | 660 -webkit-border-radius: 2px; |
| 661 border: 1px solid #aaa; | 661 border: 1px solid #aaa; |
| 662 font-size: inherit; | 662 font-size: inherit; |
| 663 padding: 3px; | 663 padding: 3px; |
| 664 } | 664 } |
| 665 | 665 |
| 666 /* SELECT */ | |
| 667 select { | |
| 668 -webkit-appearance: button; | |
| 669 -webkit-border-radius: 2px; | |
| 670 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); | |
| 671 -webkit-padding-end: 20px; | |
| 672 -webkit-padding-start: 2px; | |
| 673 -webkit-user-select: none; | |
| 674 background-image: url("select.png"), -webkit-linear-gradient(#fafafa, #f4f4f4
40%, #e5e5e5); | |
| 675 background-position: center right; | |
| 676 background-repeat: no-repeat; | |
| 677 border: 1px solid #aaa; | |
| 678 color: #555; | |
| 679 font-size: inherit; | |
| 680 margin: 0; | |
| 681 overflow: hidden; | |
| 682 padding-top: 2px; | |
| 683 padding-bottom: 2px; | |
| 684 text-overflow: ellipsis; | |
| 685 white-space: nowrap; | |
| 686 } | |
| 687 | |
| 688 select:disabled { | |
| 689 color: graytext; | |
| 690 } | |
| 691 | |
| 692 html[dir='rtl'] select { | |
| 693 background-position: center left; | |
| 694 } | |
| 695 | |
| 696 select:enabled:hover { | |
| 697 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2); | |
| 698 background-image: url("select.png"), -webkit-linear-gradient(#fefefe, #f8f8f8
40%, #e9e9e9); | |
| 699 color: #333; | |
| 700 } | |
| 701 | |
| 702 select:enabled:active { | |
| 703 -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2); | |
| 704 background-image: url("select.png"), -webkit-linear-gradient(#f4f4f4, #efefef
40%, #dcdcdc); | |
| 705 color: #444; | |
| 706 } | |
| 707 | |
| 708 /* CHECKBOX, RADIO */ | 666 /* CHECKBOX, RADIO */ |
| 709 input[type=checkbox], | 667 input[type=checkbox], |
| 710 input[type=radio] { | 668 input[type=radio] { |
| 711 margin-left: 0; | 669 margin-left: 0; |
| 712 margin-right: 0; | 670 margin-right: 0; |
| 713 position: relative; | 671 position: relative; |
| 714 top: 1px; | 672 top: 1px; |
| 715 } | 673 } |
| 716 | 674 |
| 717 /* Checkbox and radio buttons have different sizes on different platforms. The | 675 /* Checkbox and radio buttons have different sizes on different platforms. The |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 770 | 728 |
| 771 html:not([hasFlashPlugin]) .flash-plugin-area, | 729 html:not([hasFlashPlugin]) .flash-plugin-area, |
| 772 /* If the Flash plug-in supports the NPP_ClearSiteData API, we don't need to | 730 /* If the Flash plug-in supports the NPP_ClearSiteData API, we don't need to |
| 773 * show the link to the Flash storage settings manager: | 731 * show the link to the Flash storage settings manager: |
| 774 */ | 732 */ |
| 775 html[flashPluginSupportsClearSiteData] .flash-plugin-area, | 733 html[flashPluginSupportsClearSiteData] .flash-plugin-area, |
| 776 html:not([flashPluginSupportsClearSiteData]) .clear-plugin-lso-data-enabled, | 734 html:not([flashPluginSupportsClearSiteData]) .clear-plugin-lso-data-enabled, |
| 777 html[flashPluginSupportsClearSiteData] .clear-plugin-lso-data-disabled { | 735 html[flashPluginSupportsClearSiteData] .clear-plugin-lso-data-disabled { |
| 778 display: none; | 736 display: none; |
| 779 } | 737 } |
| OLD | NEW |