Ticket #18640: t18640-admin-css-fixes.diff
| File t18640-admin-css-fixes.diff, 3.8 KB (added by demetris, 21 months ago) |
|---|
-
wp-admin/css/colors-classic.dev.css
612 612 #ed_reply_toolbar input { 613 613 background: #fff; 614 614 background-image: -ms-linear-gradient(bottom, #e5f0f8, #fff); /* IE10 */ 615 background-image: -moz-linear-gradient(bottom, #e5f0f8, #fff) ); /* Firefox */616 background-image: -o-linear-gradient(bottom, #e5f0f8, #fff) ); /* Opera */615 background-image: -moz-linear-gradient(bottom, #e5f0f8, #fff); /* Firefox */ 616 background-image: -o-linear-gradient(bottom, #e5f0f8, #fff); /* Opera */ 617 617 background-image: -webkit-gradient(linear, left bottom, left top, from(#e5f0f8), to(#fff)); /* old Webkit */ 618 618 background-image: -webkit-linear-gradient(bottom, #e5f0f8, #fff) !important; /* new Webkit */ 619 619 background-image: linear-gradient(bottom, #e5f0f8, #fff); /* proposed W3C Markup */ … … 974 974 border-color: #5589AA !important; 975 975 background-color: #c9c9c9; /* Fallback */ 976 976 background-image: -ms-linear-gradient(bottom, #bdccd5, #fff); /* IE10 */ 977 background-image: -moz-linear-gradient(bottom, #bdccd5, #fff) ); /* Firefox */978 background-image: -o-linear-gradient(bottom, #bdccd5, #fff) ); /* Opera */977 background-image: -moz-linear-gradient(bottom, #bdccd5, #fff); /* Firefox */ 978 background-image: -o-linear-gradient(bottom, #bdccd5, #fff); /* Opera */ 979 979 background-image: -webkit-gradient(linear, left bottom, left top, from(#bdccd5), to(#fff)); /* old Webkit */ 980 980 background-image: -webkit-linear-gradient(bottom, #bdccd5, #fff) !important; /* new Webkit */ 981 981 background-image: linear-gradient(bottom, #bdccd5, #fff); /* proposed W3C Markup */ … … 989 989 .wp-editor-wrap .wp_themeSkin a.mceButtonActive:hover { 990 990 background: #B0C8D7 !important; 991 991 background-image: -ms-linear-gradient(bottom, #fff, #cfdfe9); /* IE10 */ 992 background-image: -moz-linear-gradient(bottom, #fff, #cfdfe9) ); /* Firefox */993 background-image: -o-linear-gradient(bottom, #fff, #cfdfe9) ); /* Opera */992 background-image: -moz-linear-gradient(bottom, #fff, #cfdfe9); /* Firefox */ 993 background-image: -o-linear-gradient(bottom, #fff, #cfdfe9); /* Opera */ 994 994 background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#cfdfe9)); /* old Webkit */ 995 995 background-image: -webkit-linear-gradient(bottom, #fff, #cfdfe9) !important; /* new Webkit */ 996 996 background-image: linear-gradient(bottom, #fff, #cfdfe9); /* proposed W3C Markup */ … … 1231 1231 .wp-editor-wrap.wp_themeSkin tr.mceFirst td.mceToolbar { 1232 1232 border-bottom: 1px solid #ccc; 1233 1233 background-color: #eff8ff; /* Fallback */ 1234 background-image: -ms-linear-gradient(bottom, #cfdfe9 ), #eff8ff); /* IE10 */1234 background-image: -ms-linear-gradient(bottom, #cfdfe9, #eff8ff); /* IE10 */ 1235 1235 background-image: -moz-linear-gradient(bottom, #cfdfe9, #eff8ff); /* Firefox */ 1236 1236 background-image: -o-linear-gradient(bottom, #cfdfe9, #eff8ff); /* Opera */ 1237 1237 background-image: -webkit-linear-gradient(bottom, #cfdfe9, #eff8ff); /* new Webkit */ -
wp-admin/css/wp-admin.dev.css
3461 3461 width: 95%; 3462 3462 } 3463 3463 3464 span.description { 3465 padding-left: 5px; 3466 vertical-align: -1px; 3467 } 3468 3464 3469 p.description, 3465 3470 .form-wrap p { 3466 3471 margin: 2px 0 5px; … … 4669 4674 cursor: move; 4670 4675 color: #333; 4671 4676 background: #dfdfdf; 4672 -webkit-gradient(4677 background-image: -webkit-gradient( 4673 4678 linear, 4674 4679 left bottom, 4675 4680 left top, 4676 4681 color-stop(0.07, rgb(230,230,230)), 4677 4682 color-stop(0.77, rgb(216,216,216)) 4678 4683 ); 4679 -moz-linear-gradient(4684 background-image: -moz-linear-gradient( 4680 4685 center bottom, 4681 4686 rgb(230,230,230) 7%, 4682 4687 rgb(216,216,216) 77%
