Ticket #17184: 17184-gradient_opera.patch
File 17184-gradient_opera.patch, 2.5 KB (added by , 14 years ago) |
---|
-
wp-admin/css/wp-admin.dev.css
3915 3915 position: relative; 3916 3916 cursor: move; 3917 3917 color: #333; 3918 background: #dfdfdf; 3919 -webkit-gradient( 3920 linear, 3921 left bottom, 3922 left top, 3923 color-stop(0.07, rgb(230,230,230)), 3924 color-stop(0.77, rgb(216,216,216)) 3925 ); 3926 -moz-linear-gradient( 3927 center bottom, 3928 rgb(230,230,230) 7%, 3929 rgb(216,216,216) 77% 3930 ); 3931 background-repeat: no-repeat; 3932 background-image-position: 10px 8px; 3918 background-color: #dfdfdf; /* Fallback */ 3919 background-image: -ms-linear-gradient(bottom, rgb(230,230,230) 7%, rgb(216,216,216) 77%); /* IE10 */ 3920 background-image: -moz-linear-gradient(bottom, rgb(230,230,230) 7%, rgb(216,216,216) 77%); /* Firefox */ 3921 background-image: -o-linear-gradient(bottom, rgb(230,230,230) 7%, rgb(216,216,216) 77%); /* Opera */ 3922 background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.07, rgb(230,230,230)), color-stop(0.77, rgb(216,216,216))); /* old Webkit */ 3923 background-image: -webkit-linear-gradient(bottom, rgb(230,230,230) 7%, rgb(216,216,216) 77%); /* new Webkit */ 3924 background-image: linear-gradient(bottom, rgb(230,230,230) 7%, rgb(216,216,216) 77%); /* proposed W3C Markup */ 3933 3925 border-radius: 5px; 3934 3926 -webkit-border-radius: 5px; 3935 3927 -moz-border-radius: 5px; 3936 -o-border-radius: 5px;3937 3928 border: 1px #b4b4b4 solid; 3938 3929 font: normal normal normal 14px/16px Georgia, "Times New Roman", "Bitstream Charter", Times, serif; 3939 3930 text-decoration: none; 3940 3931 text-shadow: #fff 0 1px 0px; 3941 -webkit-text-shadow: #fff 0 1px 0px;3942 -moz-text-shadow: #fff 0 1px 0px;3943 -o-text-shadow: #fff 0 1px 0px;3944 3932 } 3945 3933 3946 3934 .pressthis a:hover, … … 3952 3940 transform: skew(20deg) rotate(9deg); 3953 3941 -webkit-transform: skew(20deg) rotate(9deg); 3954 3942 -moz-transform: skew(20deg) rotate(9deg); 3943 -o-transform: skew(20deg) rotate(9deg); 3955 3944 box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7); 3956 3945 -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7); 3957 3946 -moz-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7); … … 3975 3964 transform: skew(20deg) rotate(6deg); 3976 3965 -webkit-transform: skew(20deg) rotate(6deg); 3977 3966 -moz-transform: skew(20deg) rotate(6deg); 3967 -o-transform: skew(20deg) rotate(6deg); 3978 3968 box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6); 3979 3969 -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6); 3980 -moz-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6); 3970 -moz-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6); 3981 3971 } 3982 3972 3983 3973