Make WordPress Core

Ticket #16461: 16461.complete.patch

File 16461.complete.patch, 27.5 KB (added by ocean90, 14 years ago)
  • wp-admin/includes/update-core.php

     
    242242'wp-admin/images/visit-site-button-grad-vs.gif',
    243243'wp-admin/images/visit-site-button-grad.gif',
    244244'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
    245259);
    246260
    247261/**
  • wp-admin/css/colors-classic.dev.css

     
    138138.widget .widget-top,
    139139.postbox h3,
    140140.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 */
    142148        text-shadow: #fff 0 1px 0;
    143149}
    144150
     
    305311.button,
    306312.submit input,
    307313.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;
    310322}
    311323
    312324.button:active,
    313325.submit input:active,
    314326.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 */
    316334}
    317335
    318336input.button-primary,
     
    321339        border-color: #298cba;
    322340        font-weight: bold;
    323341        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 */
    325348        text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
    326349}
    327350
    328351input.button-primary:active,
    329352button.button-primary:active,
    330353a.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 */
    332360        color: #eaf2fa;
    333361}
    334362
     
    472500h3.dashboard-widget-title small,
    473501.find-box-head {
    474502        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 */
    476510}
    477511
    478512th.sortable a:hover, th.sortable a:active, th.sortable a:focus {
     
    545579
    546580#ed_toolbar input,
    547581#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 */
    549589}
    550590
    551591#editable-post-name {
     
    570610#footer {
    571611        color: #777;
    572612        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 */
    576620}
    577621
    578622#media-items,
     
    696740
    697741#wphead {
    698742        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 */
    702750}
    703751
    704752#wphead h1 a {
     
    764812/* editors */
    765813#quicktags {
    766814        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 */
    769822}
    770823
    771824#ed_toolbar input {
     
    933986}
    934987
    935988.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 */
    937996        border-color: #cfdfe9;
    938997}
    939998
     
    14881547
    14891548#favorite-first {
    14901549        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 */
    14941557}
    14951558
    14961559#favorite-inside {
     
    16261689}
    16271690
    16281691#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 */
    16311699        text-shadow: #fff 0 1px 0;
    16321700        border-color: #dfdfdf;
    16331701}
    16341702
    16351703#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 */
    16371711        text-shadow: #174f69 0 -1px 0;
    1638         background-color: #cfdfe9;
    16391712        border-color: #174f69;
    16401713        color: #ffffff;
    16411714}
     
    16961769}
    16971770
    16981771#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 */
    17001779        border-top: solid #D1E5EE 1px;
    17011780}
    17021781
  • wp-admin/css/press-this.dev.css

     
    490490}
    491491
    492492.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 */
    494499        border-color: #21759B;
    495500        color: #fff;
    496501}
  • wp-admin/css/colors-fresh.dev.css

     
    138138.widget .widget-top,
    139139.postbox h3,
    140140.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 */
    142148        text-shadow: #fff 0 1px 0;
    143149}
    144150
     
    305311.button,
    306312.submit input,
    307313.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;
    310322}
    311323
    312324.button:active,
    313325.submit input:active,
    314326.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 */
    316334}
    317335
    318336input.button-primary,
     
    321339        border-color: #298cba;
    322340        font-weight: bold;
    323341        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 */
    325348        text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
    326349}
    327350
    328351input.button-primary:active,
    329352button.button-primary:active,
    330353a.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 */
    332360        color: #eaf2fa;
    333361}
    334362
     
    472500h3.dashboard-widget-title small,
    473501.find-box-head {
    474502        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 */
    476510}
    477511
    478512th.sortable a:hover, th.sortable a:active, th.sortable a:focus {
     
    545579
    546580#ed_toolbar input,
    547581#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 */
    549589}
    550590
    551591#editable-post-name {
     
    570610#footer {
    571611        color: #777;
    572612        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 */
    576620}
    577621
    578622#media-items,
     
    696740
    697741#wphead {
    698742        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 */
    702750}
    703751
    704752#wphead h1 a {
     
    764812/* editors */
    765813#quicktags {
    766814        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 */
    769822}
    770823
    771824#ed_toolbar input {
     
    933986}
    934987
    935988.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 */
    937996        border-color: #dfdfdf;
    938997}
    939998
     
    14831542
    14841543#favorite-first {
    14851544        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 */
    14891552}
    14901553
    14911554#favorite-inside {
     
    16151678}
    16161679
    16171680#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 */
    16201688        text-shadow: #fff 0 1px 0;
    16211689        border-color: #dfdfdf;
    16221690}
    16231691
    16241692#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 */
    16261700        text-shadow: #3f3f3f 0 -1px 0;
    1627         background-color: #636363;
    16281701        border-color: #636363;
    16291702        color: #fff;
    16301703}
     
    16851758}
    16861759
    16871760#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 */
    16891768}
    16901769
    16911770#menu-management .nav-tab-active {
  • wp-admin/css/install.dev.css

     
    9898}
    9999
    100100.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 */
    102108}
    103109
    104110.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 */
    106118}
    107119
    108120textarea {
  • wp-admin/css/wp-admin.dev.css

     
    514514        padding: 0;
    515515        margin-bottom: -3px;
    516516        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 */
    520524}
    521525
    522526#quicktags #ed_toolbar {