Ticket #16461: 16461.complete.patch
File 16461.complete.patch, 27.5 KB (added by , 14 years ago) |
---|
-
wp-admin/includes/update-core.php
242 242 'wp-admin/images/visit-site-button-grad-vs.gif', 243 243 'wp-admin/images/visit-site-button-grad.gif', 244 244 'wp-includes/classes.php', 245 // 3.2 246 'wp-admin/images/button-grad.png', 247 'wp-admin/images/button-grad-active.png', 248 'wp-admin/images/blue-grad.png', 249 'wp-admin/images/gray-grad.png', 250 'wp-admin/images/white-grad.png', 251 'wp-admin/images/white-grad-active.png', 252 'wp-admin/images/ed-bg-vs.gif', 253 'wp-admin/images/ed-bg.gif', 254 'wp-admin/images/fav-vs.png', 255 'wp-admin/images/fav.png', 256 257 258 245 259 ); 246 260 247 261 /** -
wp-admin/css/colors-classic.dev.css
138 138 .widget .widget-top, 139 139 .postbox h3, 140 140 .stuffbox h3 { 141 background: #cfdfe9 url("../images/blue-grad.png?ver=20101102") repeat-x left top; 141 background-color: #cfdfe9; /* Fallback */ 142 background-image: -ms-linear-gradient(bottom, #d0dfe9, #eff8ff); /* IE10 */ 143 background-image: -moz-linear-gradient(bottom, #d0dfe9, #eff8ff); /* Firefox */ 144 background-image: -o-linear-gradient(bottom, #d0dfe9, #eff8ff); /* Opera */ 145 background-image: -webkit-gradient(linear, left bottom, left top, from(#d0dfe9), to(#eff8ff)); /* old Webkit */ 146 background-image: -webkit-linear-gradient(bottom, #d0dfe9, #eff8ff); /* new Webkit */ 147 background-image: linear-gradient(bottom, #d0dfe9, #eff8ff); /* proposed W3C Markup */ 142 148 text-shadow: #fff 0 1px 0; 143 149 } 144 150 … … 305 311 .button, 306 312 .submit input, 307 313 .button-secondary { 308 background: #f2f2f2 url(../images/white-grad.png) repeat-x scroll left top; 309 text-shadow: rgba(255,255,255,1) 0 1px 0; 314 background-color: #f2f2f2; /* Fallback */ 315 background-image: -ms-linear-gradient(bottom, #ededed, #fff); /* IE10 */ 316 background-image: -moz-linear-gradient(bottom, #ededed, #fff); /* Firefox */ 317 background-image: -o-linear-gradient(bottom, #ededed, #fff); /* Opera */ 318 background-image: -webkit-gradient(linear, left bottom, left top, from(#ededed), to(#fff)); /* old Webkit */ 319 background-image: -webkit-linear-gradient(bottom, #ededed, #fff); /* new Webkit */ 320 background-image: linear-gradient(bottom, #ededed, #fff); /* proposed W3C Markup */ 321 text-shadow: #fff 0 1px 0; 310 322 } 311 323 312 324 .button:active, 313 325 .submit input:active, 314 326 .button-secondary:active { 315 background: #eee url(../images/white-grad-active.png) repeat-x scroll left top; 327 background-color: #eee; /* Fallback */ 328 background-image: -ms-linear-gradient(top, #ededed, #fff); /* IE10 */ 329 background-image: -moz-linear-gradient(top, #ededed, #fff); /* Firefox */ 330 background-image: -o-linear-gradient(top, #ededed, #fff); /* Opera */ 331 background-image: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff)); /* old Webkit */ 332 background-image: -webkit-linear-gradient(top, #ededed, #fff); /* new Webkit */ 333 background-image: linear-gradient(top, #ededed, #fff); /* proposed W3C Markup */ 316 334 } 317 335 318 336 input.button-primary, … … 321 339 border-color: #298cba; 322 340 font-weight: bold; 323 341 color: #fff; 324 background: #21759B url(../images/button-grad.png) repeat-x scroll left top; 342 background-image: -ms-linear-gradient(bottom, #1d6385, #298cba); /* IE10 */ 343 background-image: -moz-linear-gradient(bottom, #1d6385, #298cba); /* Firefox */ 344 background-image: -o-linear-gradient(bottom, #1d6385, #298cba); /* Opera */ 345 background-image: -webkit-gradient(linear, left bottom, left top, from(#1d6385), to(#298cba)); /* old Webkit */ 346 background-image: -webkit-linear-gradient(bottom, #1d6385, #298cba); /* new Webkit */ 347 background-image: linear-gradient(bottom, #1d6385, #298cba); /* proposed W3C Markup */ 325 348 text-shadow: rgba(0,0,0,0.3) 0 -1px 0; 326 349 } 327 350 328 351 input.button-primary:active, 329 352 button.button-primary:active, 330 353 a.button-primary:active { 331 background: #21759b url(../images/button-grad-active.png) repeat-x scroll left top; 354 background-image: -ms-linear-gradient(top, #1d6385, #298cba); /* IE10 */ 355 background-image: -moz-linear-gradient(top, #1d6385, #298cba); /* Firefox */ 356 background-image: -o-linear-gradient(top, #1d6385, #298cba); /* Opera */ 357 background-image: -webkit-gradient(linear, left top, left bottom, from(#1d6385), to(#298cba)); /* old Webkit */ 358 background-image: -webkit-linear-gradient(top, #1d6385, #298cba); /* new Webkit */ 359 background-image: linear-gradient(top, #1d6385, #298cba); /* proposed W3C Markup */ 332 360 color: #eaf2fa; 333 361 } 334 362 … … 472 500 h3.dashboard-widget-title small, 473 501 .find-box-head { 474 502 color: #333; 475 background: #cfdfe9 url(../images/blue-grad.png?ver=20101102) repeat-x scroll left top; 503 background-color: #cfdfe9; /* Fallback */ 504 background-image: -ms-linear-gradient(bottom, #d0dfe9, #eff8ff); /* IE10 */ 505 background-image: -moz-linear-gradient(bottom, #d0dfe9, #eff8ff); /* Firefox */ 506 background-image: -o-linear-gradient(bottom, #d0dfe9, #eff8ff); /* Opera */ 507 background-image: -webkit-gradient(linear, left bottom, left top, from(#d0dfe9), to(#eff8ff)); /* old Webkit */ 508 background-image: -webkit-linear-gradient(bottom, #d0dfe9, #eff8ff); /* new Webkit */ 509 background-image: linear-gradient(bottom, #d0dfe9, #eff8ff); /* proposed W3C Markup */ 476 510 } 477 511 478 512 th.sortable a:hover, th.sortable a:active, th.sortable a:focus { … … 545 579 546 580 #ed_toolbar input, 547 581 #ed_reply_toolbar input { 548 background: #fff url("../images/fade-butt.png") repeat-x 0 -2px; 582 background-color: #e9e8e8; /* Fallback */ 583 background-image: -ms-linear-gradient(bottom, #e9e8e8, #fcfcfc); /* IE10 */ 584 background-image: -moz-linear-gradient(bottom, #e9e8e8, #fcfcfc); /* Firefox */ 585 background-image: -o-linear-gradient(bottom, #e9e8e8, #fcfcfc); /* Opera */ 586 background-image: -webkit-gradient(linear, left bottom, left top, from(#e9e8e8), to(#fcfcfc)); /* old Webkit */ 587 background-image: -webkit-linear-gradient(bottom, #e9e8e8, #fcfcfc); /* new Webkit */ 588 background-image: linear-gradient(bottom, #e9e8e8, #fcfcfc); /* proposed W3C Markup */ 549 589 } 550 590 551 591 #editable-post-name { … … 570 610 #footer { 571 611 color: #777; 572 612 border-color: #b0c8d7; 573 background: #cfdfe9; /* fallback color */ 574 background:-moz-linear-gradient(bottom, #cfdfe9, #eff8ff); 575 background:-webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#eff8ff)); 613 background-color: #cfdfe9; /* Fallback */ 614 background-image: -ms-linear-gradient(bottom, #cfdfe9, #eff8ff); /* IE10 */ 615 background-image: -moz-linear-gradient(bottom, #cfdfe9, #eff8ff); /* Firefox */ 616 background-image: -o-linear-gradient(bottom, #cfdfe9, #eff8ff); /* Opera */ 617 background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#eff8ff)); /* old Webkit */ 618 background-image: -webkit-linear-gradient(bottom, #cfdfe9, #eff8ff); /* new Webkit */ 619 background-image: linear-gradient(bottom, #cfdfe9, #eff8ff); /* proposed W3C Markup */ 576 620 } 577 621 578 622 #media-items, … … 696 740 697 741 #wphead { 698 742 border-bottom:#b0c8d7 1px solid; 699 background: #cfdfe9; /* fallback color */ 700 background:-moz-linear-gradient(bottom, #cfdfe9, #eff8ff); 701 background:-webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#eff8ff)); 743 background-color: #cfdfe9; /* Fallback */ 744 background-image: -ms-linear-gradient(bottom, #cfdfe9, #eff8ff); /* IE10 */ 745 background-image: -moz-linear-gradient(bottom, #cfdfe9, #eff8ff); /* Firefox */ 746 background-image: -o-linear-gradient(bottom, #cfdfe9, #eff8ff); /* Opera */ 747 background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#eff8ff)); /* old Webkit */ 748 background-image: -webkit-linear-gradient(bottom, #cfdfe9, #eff8ff); /* new Webkit */ 749 background-image: linear-gradient(bottom, #cfdfe9, #eff8ff); /* proposed W3C Markup */ 702 750 } 703 751 704 752 #wphead h1 a { … … 764 812 /* editors */ 765 813 #quicktags { 766 814 border-color: #cfdfe9; 767 background-color: #cfdfe9; 768 background-image: url("../images/ed-bg-vs.gif?ver=20101102"); 815 background-color: #cfdfe9; /* Fallback */ 816 background-image: -ms-linear-gradient(bottom, #d0dfe9, #eff8ff); /* IE10 */ 817 background-image: -moz-linear-gradient(bottom, #d0dfe9, #eff8ff); /* Firefox */ 818 background-image: -o-linear-gradient(bottom, #d0dfe9, #eff8ff); /* Opera */ 819 background-image: -webkit-gradient(linear, left bottom, left top, from(#d0dfe9), to(#eff8ff)); /* old Webkit */ 820 background-image: -webkit-linear-gradient(bottom, #d0dfe9, #eff8ff); /* new Webkit */ 821 background-image: linear-gradient(bottom, #d0dfe9, #eff8ff); /* proposed W3C Markup */ 769 822 } 770 823 771 824 #ed_toolbar input { … … 933 986 } 934 987 935 988 .wp_themeSkin tr.mceFirst td.mceToolbar { 936 background: #cfdfe9 url("../images/ed-bg-vs.gif?ver=20101102") repeat-x scroll left top; 989 background-color: #cfdfe9; /* Fallback */ 990 background-image: -ms-linear-gradient(bottom, #d0dfe9, #eff8ff); /* IE10 */ 991 background-image: -moz-linear-gradient(bottom, #d0dfe9, #eff8ff); /* Firefox */ 992 background-image: -o-linear-gradient(bottom, #d0dfe9, #eff8ff); /* Opera */ 993 background-image: -webkit-gradient(linear, left bottom, left top, from(#d0dfe9), to(#eff8ff)); /* old Webkit */ 994 background-image: -webkit-linear-gradient(bottom, #d0dfe9, #eff8ff); /* new Webkit */ 995 background-image: linear-gradient(bottom, #d0dfe9, #eff8ff); /* proposed W3C Markup */ 937 996 border-color: #cfdfe9; 938 997 } 939 998 … … 1488 1547 1489 1548 #favorite-first { 1490 1549 border-color: #c0c0c0; 1491 background: #f1f1f1; /* fallback color */ 1492 background:-moz-linear-gradient(bottom, #e7e7e7, #fff); 1493 background:-webkit-gradient(linear, left bottom, left top, from(#e7e7e7), to(#fff)); 1550 background-color: #f1f1f1; /* Fallback */ 1551 background-image: -ms-linear-gradient(bottom, #e7e7e7, #fff); /* IE10 */ 1552 background-image: -moz-linear-gradient(bottom, #e7e7e7, #fff); /* Firefox */ 1553 background-image: -o-linear-gradient(bottom, #e7e7e7, #fff); /* Opera */ 1554 background-image: -webkit-gradient(linear, left bottom, left top, from(#e7e7e7), to(#fff)); /* old Webkit */ 1555 background-image: -webkit-linear-gradient(bottom, #e7e7e7, #fff); /* new Webkit */ 1556 background-image: linear-gradient(bottom, #e7e7e7, #fff); /* proposed W3C Markup */ 1494 1557 } 1495 1558 1496 1559 #favorite-inside { … … 1626 1689 } 1627 1690 1628 1691 #widgets-left .sidebar-name { 1629 background-color: #aaa; 1630 background-image: url(../images/ed-bg-vs.gif?ver=20101102); 1692 background-color: #cfdfe9; /* Fallback */ 1693 background-image: -ms-linear-gradient(bottom, #d0dfe9, #eff8ff); /* IE10 */ 1694 background-image: -moz-linear-gradient(bottom, #d0dfe9, #eff8ff); /* Firefox */ 1695 background-image: -o-linear-gradient(bottom, #d0dfe9, #eff8ff); /* Opera */ 1696 background-image: -webkit-gradient(linear, left bottom, left top, from(#d0dfe9), to(#eff8ff)); /* old Webkit */ 1697 background-image: -webkit-linear-gradient(bottom, #d0dfe9, #eff8ff); /* new Webkit */ 1698 background-image: linear-gradient(bottom, #d0dfe9, #eff8ff); /* proposed W3C Markup */ 1631 1699 text-shadow: #fff 0 1px 0; 1632 1700 border-color: #dfdfdf; 1633 1701 } 1634 1702 1635 1703 #widgets-right .sidebar-name { 1636 background-image: url(../images/button-grad.png); 1704 background-color: #426c92; /* Fallback */ 1705 background-image: -ms-linear-gradient(bottom, #426c92, #5e89af); /* IE10 */ 1706 background-image: -moz-linear-gradient(bottom, #426c92, #5e89af); /* Firefox */ 1707 background-image: -o-linear-gradient(bottom, #426c92, #5e89af); /* Opera */ 1708 background-image: -webkit-gradient(linear, left bottom, left top, from(#426c92), to(#5e89af)); /* old Webkit */ 1709 background-image: -webkit-linear-gradient(bottom, #426c92, #5e89af); /* new Webkit */ 1710 background-image: linear-gradient(bottom, #426c92, #5e89af); /* proposed W3C Markup */ 1637 1711 text-shadow: #174f69 0 -1px 0; 1638 background-color: #cfdfe9;1639 1712 border-color: #174f69; 1640 1713 color: #ffffff; 1641 1714 } … … 1696 1769 } 1697 1770 1698 1771 #nav-menu-header, #nav-menu-footer, .menu-item-handle { 1699 background: url("../images/ed-bg-vs.gif?ver=20101102") repeat-x scroll left top #cfdfe9; 1772 background-color: #cfdfe9; /* Fallback */ 1773 background-image: -ms-linear-gradient(bottom, #d0dfe9, #eff8ff); /* IE10 */ 1774 background-image: -moz-linear-gradient(bottom, #d0dfe9, #eff8ff); /* Firefox */ 1775 background-image: -o-linear-gradient(bottom, #d0dfe9, #eff8ff); /* Opera */ 1776 background-image: -webkit-gradient(linear, left bottom, left top, from(#d0dfe9), to(#eff8ff)); /* old Webkit */ 1777 background-image: -webkit-linear-gradient(bottom, #d0dfe9, #eff8ff); /* new Webkit */ 1778 background-image: linear-gradient(bottom, #d0dfe9, #eff8ff); /* proposed W3C Markup */ 1700 1779 border-top: solid #D1E5EE 1px; 1701 1780 } 1702 1781 -
wp-admin/css/press-this.dev.css
490 490 } 491 491 492 492 .button-primary { 493 background: #21759B url(../images/button-grad.png) repeat-x scroll left top; 493 background-image: -ms-linear-gradient(bottom, #1d6385, #298cba); /* IE10 */ 494 background-image: -moz-linear-gradient(bottom, #1d6385, #298cba); /* Firefox */ 495 background-image: -o-linear-gradient(bottom, #1d6385, #298cba); /* Opera */ 496 background-image: -webkit-gradient(linear, left bottom, left top, from(#1d6385), to(#298cba)); /* old Webkit */ 497 background-image: -webkit-linear-gradient(bottom, #1d6385, #298cba); /* new Webkit */ 498 background-image: linear-gradient(bottom, #1d6385, #298cba); /* proposed W3C Markup */ 494 499 border-color: #21759B; 495 500 color: #fff; 496 501 } -
wp-admin/css/colors-fresh.dev.css
138 138 .widget .widget-top, 139 139 .postbox h3, 140 140 .stuffbox h3 { 141 background: #dfdfdf url("../images/gray-grad.png") repeat-x left top; 141 background-color: #dfdfdf; /* Fallback */ 142 background-image: -ms-linear-gradient(bottom, #dfdfdf, #ededed); /* IE10 */ 143 background-image: -moz-linear-gradient(bottom, #dfdfdf, #ededed); /* Firefox */ 144 background-image: -o-linear-gradient(bottom, #dfdfdf, #ededed); /* Opera */ 145 background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#ededed)); /* old Webkit */ 146 background-image: -webkit-linear-gradient(bottom, #dfdfdf, #ededed); /* new Webkit */ 147 background-image: linear-gradient(bottom, #dfdfdf, #ededed); /* proposed W3C Markup */ 142 148 text-shadow: #fff 0 1px 0; 143 149 } 144 150 … … 305 311 .button, 306 312 .submit input, 307 313 .button-secondary { 308 background: #f2f2f2 url(../images/white-grad.png) repeat-x scroll left top; 309 text-shadow: rgba(255,255,255,1) 0 1px 0; 314 background-color: #f2f2f2; /* Fallback */ 315 background-image: -ms-linear-gradient(bottom, #ededed, #fff); /* IE10 */ 316 background-image: -moz-linear-gradient(bottom, #ededed, #fff); /* Firefox */ 317 background-image: -o-linear-gradient(bottom, #ededed, #fff); /* Opera */ 318 background-image: -webkit-gradient(linear, left bottom, left top, from(#ededed), to(#fff)); /* old Webkit */ 319 background-image: -webkit-linear-gradient(bottom, #ededed, #fff); /* new Webkit */ 320 background-image: linear-gradient(bottom, #ededed, #fff); /* proposed W3C Markup */ 321 text-shadow: #fff 0 1px 0; 310 322 } 311 323 312 324 .button:active, 313 325 .submit input:active, 314 326 .button-secondary:active { 315 background: #eee url(../images/white-grad-active.png) repeat-x scroll left top; 327 background-color: #eee; /* Fallback */ 328 background-image: -ms-linear-gradient(top, #ededed, #fff); /* IE10 */ 329 background-image: -moz-linear-gradient(top, #ededed, #fff); /* Firefox */ 330 background-image: -o-linear-gradient(top, #ededed, #fff); /* Opera */ 331 background-image: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff)); /* old Webkit */ 332 background-image: -webkit-linear-gradient(top, #ededed, #fff); /* new Webkit */ 333 background-image: linear-gradient(top, #ededed, #fff); /* proposed W3C Markup */ 316 334 } 317 335 318 336 input.button-primary, … … 321 339 border-color: #298cba; 322 340 font-weight: bold; 323 341 color: #fff; 324 background: #21759B url(../images/button-grad.png) repeat-x scroll left top; 342 background-image: -ms-linear-gradient(bottom, #1d6385, #298cba); /* IE10 */ 343 background-image: -moz-linear-gradient(bottom, #1d6385, #298cba); /* Firefox */ 344 background-image: -o-linear-gradient(bottom, #1d6385, #298cba); /* Opera */ 345 background-image: -webkit-gradient(linear, left bottom, left top, from(#1d6385), to(#298cba)); /* old Webkit */ 346 background-image: -webkit-linear-gradient(bottom, #1d6385, #298cba); /* new Webkit */ 347 background-image: linear-gradient(bottom, #1d6385, #298cba); /* proposed W3C Markup */ 325 348 text-shadow: rgba(0,0,0,0.3) 0 -1px 0; 326 349 } 327 350 328 351 input.button-primary:active, 329 352 button.button-primary:active, 330 353 a.button-primary:active { 331 background: #21759b url(../images/button-grad-active.png) repeat-x scroll left top; 354 background-image: -ms-linear-gradient(top, #1d6385, #298cba); /* IE10 */ 355 background-image: -moz-linear-gradient(top, #1d6385, #298cba); /* Firefox */ 356 background-image: -o-linear-gradient(top, #1d6385, #298cba); /* Opera */ 357 background-image: -webkit-gradient(linear, left top, left bottom, from(#1d6385), to(#298cba)); /* old Webkit */ 358 background-image: -webkit-linear-gradient(top, #1d6385, #298cba); /* new Webkit */ 359 background-image: linear-gradient(top, #1d6385, #298cba); /* proposed W3C Markup */ 332 360 color: #eaf2fa; 333 361 } 334 362 … … 472 500 h3.dashboard-widget-title small, 473 501 .find-box-head { 474 502 color: #333; 475 background: #dfdfdf url(../images/gray-grad.png) repeat-x scroll left top; 503 background-color: #dfdfdf; /* Fallback */ 504 background-image: -ms-linear-gradient(bottom, #dfdfdf, #ededed); /* IE10 */ 505 background-image: -moz-linear-gradient(bottom, #dfdfdf, #ededed); /* Firefox */ 506 background-image: -o-linear-gradient(bottom, #dfdfdf, #ededed); /* Opera */ 507 background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#ededed)); /* old Webkit */ 508 background-image: -webkit-linear-gradient(bottom, #dfdfdf, #ededed); /* new Webkit */ 509 background-image: linear-gradient(bottom, #dfdfdf, #ededed); /* proposed W3C Markup */ 476 510 } 477 511 478 512 th.sortable a:hover, th.sortable a:active, th.sortable a:focus { … … 545 579 546 580 #ed_toolbar input, 547 581 #ed_reply_toolbar input { 548 background: #fff url("../images/fade-butt.png") repeat-x 0 -2px; 582 background-color: #e9e8e8; /* Fallback */ 583 background-image: -ms-linear-gradient(bottom, #e9e8e8, #fcfcfc); /* IE10 */ 584 background-image: -moz-linear-gradient(bottom, #e9e8e8, #fcfcfc); /* Firefox */ 585 background-image: -o-linear-gradient(bottom, #e9e8e8, #fcfcfc); /* Opera */ 586 background-image: -webkit-gradient(linear, left bottom, left top, from(#e9e8e8), to(#fcfcfc)); /* old Webkit */ 587 background-image: -webkit-linear-gradient(bottom, #e9e8e8, #fcfcfc); /* new Webkit */ 588 background-image: linear-gradient(bottom, #e9e8e8, #fcfcfc); /* proposed W3C Markup */ 549 589 } 550 590 551 591 #editable-post-name { … … 570 610 #footer { 571 611 color: #777; 572 612 border-color: #d1d1d1; 573 background: #d9d9d9; /* fallback color */ 574 background:-moz-linear-gradient(bottom, #d7d7d7, #e4e4e4); 575 background:-webkit-gradient(linear, left bottom, left top, from(#d7d7d7), to(#e4e4e4)); 613 background-color: #d9d9d9; /* Fallback */ 614 background-image: -ms-linear-gradient(bottom, #d7d7d7, #e4e4e4); /* IE10 */ 615 background-image: -moz-linear-gradient(bottom, #d7d7d7, #e4e4e4); /* Firefox */ 616 background-image: -o-linear-gradient(bottom, #d7d7d7, #e4e4e4); /* Opera */ 617 background-image: -webkit-gradient(linear, left bottom, left top, from(#d7d7d7), to(#e4e4e4)); /* old Webkit */ 618 background-image: -webkit-linear-gradient(bottom, #d7d7d7, #e4e4e4); /* new Webkit */ 619 background-image: linear-gradient(bottom, #d7d7d7, #e4e4e4); /* proposed W3C Markup */ 576 620 } 577 621 578 622 #media-items, … … 696 740 697 741 #wphead { 698 742 border-bottom:#c6c6c6 1px solid; 699 background: #d9d9d9; /* fallback color */ 700 background:-moz-linear-gradient(bottom, #d7d7d7, #e4e4e4); 701 background:-webkit-gradient(linear, left bottom, left top, from(#d7d7d7), to(#e4e4e4)); 743 background-color: #d9d9d9; /* Fallback */ 744 background-image: -ms-linear-gradient(bottom, #d7d7d7, #e4e4e4); /* IE10 */ 745 background-image: -moz-linear-gradient(bottom, #d7d7d7, #e4e4e4); /* Firefox */ 746 background-image: -o-linear-gradient(bottom, #d7d7d7, #e4e4e4); /* Opera */ 747 background-image: -webkit-gradient(linear, left bottom, left top, from(#d7d7d7), to(#e4e4e4)); /* old Webkit */ 748 background-image: -webkit-linear-gradient(bottom, #d7d7d7, #e4e4e4); /* new Webkit */ 749 background-image: linear-gradient(bottom, #d7d7d7, #e4e4e4); /* proposed W3C Markup */ 702 750 } 703 751 704 752 #wphead h1 a { … … 764 812 /* editors */ 765 813 #quicktags { 766 814 border-color: #dfdfdf; 767 background-color: #dfdfdf; 768 background-image: url("../images/ed-bg.gif"); 815 background-color: #dfdfdf; /* Fallback */ 816 background-image: -ms-linear-gradient(bottom, #dfdfdf, #ededed); /* IE10 */ 817 background-image: -moz-linear-gradient(bottom, #dfdfdf, #ededed); /* Firefox */ 818 background-image: -o-linear-gradient(bottom, #dfdfdf, #ededed); /* Opera */ 819 background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#ededed)); /* old Webkit */ 820 background-image: -webkit-linear-gradient(bottom, #dfdfdf, #ededed); /* new Webkit */ 821 background-image: linear-gradient(bottom, #dfdfdf, #ededed); /* proposed W3C Markup */ 769 822 } 770 823 771 824 #ed_toolbar input { … … 933 986 } 934 987 935 988 .wp_themeSkin tr.mceFirst td.mceToolbar { 936 background: #dfdfdf url("../images/ed-bg.gif") repeat-x scroll left top; 989 background-color: #dfdfdf; /* Fallback */ 990 background-image: -ms-linear-gradient(bottom, #dfdfdf, #ededed); /* IE10 */ 991 background-image: -moz-linear-gradient(bottom, #dfdfdf, #ededed); /* Firefox */ 992 background-image: -o-linear-gradient(bottom, #dfdfdf, #ededed); /* Opera */ 993 background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#ededed)); /* old Webkit */ 994 background-image: -webkit-linear-gradient(bottom, #dfdfdf, #ededed); /* new Webkit */ 995 background-image: linear-gradient(bottom, #dfdfdf, #ededed); /* proposed W3C Markup */ 937 996 border-color: #dfdfdf; 938 997 } 939 998 … … 1483 1542 1484 1543 #favorite-first { 1485 1544 border-color: #c0c0c0; 1486 background: #f1f1f1; /* fallback color */ 1487 background:-moz-linear-gradient(bottom, #e7e7e7, #fff); 1488 background:-webkit-gradient(linear, left bottom, left top, from(#e7e7e7), to(#fff)); 1545 background-color: #f1f1f1; /* Fallback */ 1546 background-image: -ms-linear-gradient(bottom, #e7e7e7, #fff); /* IE10 */ 1547 background-image: -moz-linear-gradient(bottom, #e7e7e7, #fff); /* Firefox */ 1548 background-image: -o-linear-gradient(bottom, #e7e7e7, #fff); /* Opera */ 1549 background-image: -webkit-gradient(linear, left bottom, left top, from(#e7e7e7), to(#fff)); /* old Webkit */ 1550 background-image: -webkit-linear-gradient(bottom, #e7e7e7, #fff); /* new Webkit */ 1551 background-image: linear-gradient(bottom, #e7e7e7, #fff); /* proposed W3C Markup */ 1489 1552 } 1490 1553 1491 1554 #favorite-inside { … … 1615 1678 } 1616 1679 1617 1680 #widgets-left .sidebar-name { 1618 background-color: #aaa; 1619 background-image: url(../images/ed-bg.gif); 1681 background-color: #dfdfdf; /* Fallback */ 1682 background-image: -ms-linear-gradient(bottom, #dfdfdf, #ededed); /* IE10 */ 1683 background-image: -moz-linear-gradient(bottom, #dfdfdf, #ededed); /* Firefox */ 1684 background-image: -o-linear-gradient(bottom, #dfdfdf, #ededed); /* Opera */ 1685 background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#ededed)); /* old Webkit */ 1686 background-image: -webkit-linear-gradient(bottom, #dfdfdf, #ededed); /* new Webkit */ 1687 background-image: linear-gradient(bottom, #dfdfdf, #ededed); /* proposed W3C Markup */ 1620 1688 text-shadow: #fff 0 1px 0; 1621 1689 border-color: #dfdfdf; 1622 1690 } 1623 1691 1624 1692 #widgets-right .sidebar-name { 1625 background-image: url(../images/fav.png); 1693 background-color: #636363; /* Fallback */ 1694 background-image: -ms-linear-gradient(bottom, #636363, #919191); /* IE10 */ 1695 background-image: -moz-linear-gradient(bottom, #636363, #919191); /* Firefox */ 1696 background-image: -o-linear-gradient(bottom, #636363, #5e89af); /* Opera */ 1697 background-image: -webkit-gradient(linear, left bottom, left top, from(#636363), to(#919191)); /* old Webkit */ 1698 background-image: -webkit-linear-gradient(bottom, #636363, #919191); /* new Webkit */ 1699 background-image: linear-gradient(bottom, #636363, #919191); /* proposed W3C Markup */ 1626 1700 text-shadow: #3f3f3f 0 -1px 0; 1627 background-color: #636363;1628 1701 border-color: #636363; 1629 1702 color: #fff; 1630 1703 } … … 1685 1758 } 1686 1759 1687 1760 #nav-menu-header, #nav-menu-footer, .menu-item-handle { 1688 background: url("../images/gray-grad.png") repeat-x scroll left top #dfdfdf; 1761 background-color: #dfdfdf; /* Fallback */ 1762 background-image: -ms-linear-gradient(bottom, #dfdfdf, #ededed); /* IE10 */ 1763 background-image: -moz-linear-gradient(bottom, #dfdfdf, #ededed); /* Firefox */ 1764 background-image: -o-linear-gradient(bottom, #dfdfdf, #ededed); /* Opera */ 1765 background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#ededed)); /* old Webkit */ 1766 background-image: -webkit-linear-gradient(bottom, #dfdfdf, #ededed); /* new Webkit */ 1767 background-image: linear-gradient(bottom, #dfdfdf, #ededed); /* proposed W3C Markup */ 1689 1768 } 1690 1769 1691 1770 #menu-management .nav-tab-active { -
wp-admin/css/install.dev.css
98 98 } 99 99 100 100 .button, .submit input, .button-secondary { 101 background: #f2f2f2 url(../images/white-grad.png) repeat-x scroll left top; 101 background-color: #f2f2f2; /* Fallback */ 102 background-image: -ms-linear-gradient(bottom, #ededed, #fff); /* IE10 */ 103 background-image: -moz-linear-gradient(bottom, #ededed, #fff); /* Firefox */ 104 background-image: -o-linear-gradient(bottom, #ededed, #fff); /* Opera */ 105 background-image: -webkit-gradient(linear, left bottom, left top, from(#ededed), to(#fff)); /* old Webkit */ 106 background-image: -webkit-linear-gradient(bottom, #ededed, #fff); /* new Webkit */ 107 background-image: linear-gradient(bottom, #ededed, #fff); /* proposed W3C Markup */ 102 108 } 103 109 104 110 .button:active, .submit input:active, .button-secondary:active { 105 background: #eee url(../images/white-grad-active.png) repeat-x scroll left top; 111 background-color: #eee; /* Fallback */ 112 background-image: -ms-linear-gradient(top, #ededed, #fff); /* IE10 */ 113 background-image: -moz-linear-gradient(top, #ededed, #fff); /* Firefox */ 114 background-image: -o-linear-gradient(top, #ededed, #fff); /* Opera */ 115 background-image: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff)); /* old Webkit */ 116 background-image: -webkit-linear-gradient(top, #ededed, #fff); /* new Webkit */ 117 background-image: linear-gradient(top, #ededed, #fff); /* proposed W3C Markup */ 106 118 } 107 119 108 120 textarea { -
wp-admin/css/wp-admin.dev.css
514 514 padding: 0; 515 515 margin-bottom: -3px; 516 516 border-bottom-width: 3px; 517 background-image: url("../images/ed-bg.gif"); 518 background-position: left top; 519 background-repeat: repeat-x; 517 background-color: #dfdfdf; /* Fallback */ 518 background-image: -ms-linear-gradient(bottom, #dfdfdf, #ededed); /* IE10 */ 519 background-image: -moz-linear-gradient(bottom, #dfdfdf, #ededed); /* Firefox */ 520 background-image: -o-linear-gradient(bottom, #dfdfdf, #ededed); /* Opera */ 521 background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#ededed)); /* old Webkit */ 522 background-image: -webkit-linear-gradient(bottom, #dfdfdf, #ededed); /* new Webkit */ 523 background-image: linear-gradient(bottom, #dfdfdf, #ededed); /* proposed W3C Markup */ 520 524 } 521 525 522 526 #quicktags #ed_toolbar {