Make WordPress Core

Ticket #16461: big-css-patch.diff

File big-css-patch.diff, 26.9 KB (added by cyberskull, 14 years ago)

Should be the complete CSS gradient replacement.

  • 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-repeat: repeat-x;
     142        background-position: left top;
     143        background-color: #cfdfe9;
     144        background-image: url("../images/blue-grad.png");
     145        background-image: -webkit-gradient(linear, left top, from(#ecf2f9), to(#d5e6f2));
     146        background-image: -webkit-linear-gradient(#ecf2f9, #d5e6f2);
     147        background-image: -moz-linear-gradient(#ecf2f9, #d5e6f2);
     148        background-image: linear-gradient(#ecf2f9, #d5e6f2);
    142149        text-shadow: #fff 0 1px 0;
    143150}
    144151
     
    258265}
    259266
    260267.post-com-count {
    261         background-image: url(../images/bubble_bg.gif);
     268        background-image: url("../images/bubble_bg.gif");
    262269        color: #fff;
    263270}
    264271
     
    302309        border-color: #666;
    303310}
    304311
     312
    305313.button,
    306314.submit input,
    307315.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;
     316        background-color: #f2f2f2;
     317        background-repeat: repeat-x;
     318        background-attachment: scroll;
     319        background-position: left top;
     320        background-image:  url("../images/white-grad.png");
     321        background-image: -webkit-gradient(linear, left top, from(#fff), to(#ededed));
     322        background-image: -webkit-linear-gradient(#fff, #ededed);
     323        background-image: -moz-linear-gradient(#fff, #ededed);
     324        background-image: linear-gradient(#fff, #ededed);
     325        text-shadow: rgba(255, 255, 255, 1) 0 1px 0;
    310326}
    311327
    312328.button:active,
    313329.submit input:active,
    314330.button-secondary:active {
    315         background: #eee url(../images/white-grad-active.png) repeat-x scroll left top;
     331        background-color: #eee;
     332        background-repeat: repeat-x;
     333        background-attachment: scroll;
     334        background-position: left top;
     335        background-image: url("../images/white-grad-active.png");
     336        background-image: -webkit-gradient(linear, left top, from(#ededed), to(#fff));
     337        background-image: -webkit-linear-gradient(#ededed, #fff);
     338        background-image: -moz-linear-gradient(#ededed, #fff);
     339        background-image: linear-gradient(#ededed, #fff);
    316340}
    317341
    318342input.button-primary,
     
    321345        border-color: #298cba;
    322346        font-weight: bold;
    323347        color: #fff;
    324         background: #21759B url(../images/button-grad.png) repeat-x scroll left top;
     348        background-color: #21759B;
     349        background-repeat: repeat-x;
     350        background-attachment: scroll;
     351        background-position: left top;
     352        background-image:  url("../images/button-grad.png");
     353        background-image: -webkit-gradient(linear, left top, from(#5e89af), to(#436d92));
     354        background-image: -webkit-linear-gradient(#5e89af, #436d92);
     355        background-image: -moz-linear-gradient(#5e89af, #436d92);
     356        background-image: -o-gradient(#5e89af, #436d92);
     357        background-image: linear-gradient(#5e89af, #436d92);
    325358        text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
    326359}
    327360
    328361input.button-primary:active,
    329362button.button-primary:active,
    330363a.button-primary:active {
    331         background: #21759b url(../images/button-grad-active.png) repeat-x scroll left top;
     364        background-color: #21759b;
     365        background-repeat: repeat-x;
     366        background-attachment: scroll;
     367        background-position: left top;
     368        background-image: url("../images/button-grad-active.png");
     369        background-image: -webkit-gradient(linear, left top, from(#436d92), to(#5e89af));
     370        background-image: -webkit-linear-gradient(#436d92, #5e89af);
     371        background-image: -moz-linear-gradient(#436d92, #5e89af);
     372        background-image: linear-gradient(#436d92, #5e89af);
    332373        color: #eaf2fa;
    333374}
    334375
     
    472513h3.dashboard-widget-title small,
    473514.find-box-head {
    474515        color: #333;
    475         background: #cfdfe9 url(../images/blue-grad.png?ver=20101102) repeat-x scroll left top;
     516        background-color: #cfdfe9;
     517        background-repeat: repeat-x;
     518        background-attachment: scroll;
     519        background-position: left top;
     520        background-image: url("../images/blue-grad.png?ver=20101102");
     521        background-image: -webkit-gradient(linear, left top, from(#ecf2f9), to(#d5e6f2));
     522        background-image: -webkit-linear-gradient(#ecf2f9, #d5e6f2);
     523        background-image: -moz-linear-gradient(#ecf2f9, #d5e6f2);
     524        background-image: linear-gradient(#ecf2f9, #d5e6f2);
    476525}
    477526
    478527th.sortable a:hover, th.sortable a:active, th.sortable a:focus {
     
    545594
    546595#ed_toolbar input,
    547596#ed_reply_toolbar input {
    548         background: #fff url("../images/fade-butt.png") repeat-x 0 -2px;
     597        background-color: #fff;
     598        background-repeat: repeat-x;
     599        background-position: 0 -2px;
     600        background-image: url("../images/fade-butt.png");
     601        background-image: -webkit-gradient(linear, 0 -2px, from(#fcfcfc), to(#e5e3e3));
     602        background-image: -webkit-linear-gradient(#fcfcfc, #e5e3e3);
     603        background-image: -moz-linear-gradient(#fcfcfc, #e5e3e3);
     604        background-image: linear-gradient(#fcfcfc, #e5e3e3);
    549605}
    550606
    551607#editable-post-name {
     
    570626#footer {
    571627        color: #777;
    572628        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));
     629        background-color: #cfdfe9; /* fallback color */
     630        background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#eff8ff));
     631        background-image: -webkit-linear-gradient(bottom,  #cfdfe9,  #eff8ff);
     632        background-image: -moz-linear-gradient(bottom,  #cfdfe9,  #eff8ff);
     633        background-image: linear-gradient(bottom,  #cfdfe9,  #eff8ff);
    576634}
    577635
    578636#media-items,
     
    659717}
    660718
    661719.curtime #timestamp {
    662         background-image: url(../images/date-button.gif);
     720        background-image: url("../images/date-button.gif");
    663721}
    664722
    665723#quicktags #ed_link {
     
    676734
    677735.tagchecklist span a,
    678736#bulk-titles div a {
    679         background: url(../images/xit.gif) no-repeat;
     737        background: url("../images/xit.gif") no-repeat;
    680738}
    681739
    682740.tagchecklist span a:hover,
    683741#bulk-titles div a:hover {
    684         background: url(../images/xit.gif) no-repeat -10px 0;
     742        background: url("../images/xit.gif") no-repeat -10px 0;
    685743}
    686744
    687745#update-nag, .update-nag {
     
    695753}
    696754
    697755#wphead {
    698         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));
     756        border-bottom: #b0c8d7 1px solid;
     757        background-color: #cfdfe9; /* fallback color */
     758        background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#eff8ff));
     759        background-image: -webkit-linear-gradient(bottom,  #cfdfe9,  #eff8ff);
     760        background-image: -moz-linear-gradient(bottom,  #cfdfe9,  #eff8ff);
     761        background-image: linear-gradient(bottom,  #cfdfe9,  #eff8ff);
    702762}
    703763
    704764#wphead h1 a {
     
    765825#quicktags {
    766826        border-color: #cfdfe9;
    767827        background-color: #cfdfe9;
    768         background-image: url("../images/ed-bg-vs.gif?ver=20101102");
     828        background-image: url("../images/ed-bg-vs.gif");
     829        background-image: -webkit-gradient(linear, left top, from(#436d92), to(#d5e6f2));
     830        background-image: -webkit-linear-gradient(#436d92, #d5e6f2);
     831        background-image: -moz-linear-gradient(#436d92, #d5e6f2);
     832        background-image: linear-gradient(#436d92, #d5e6f2);
    769833}
    770834
    771835#ed_toolbar input {
     
    933997}
    934998
    935999.wp_themeSkin tr.mceFirst td.mceToolbar {
    936         background: #cfdfe9 url("../images/ed-bg-vs.gif?ver=20101102") repeat-x scroll left top;
    9371000        border-color: #cfdfe9;
     1001        background-repeat: repeat-x;
     1002        background-attachment: scroll;
     1003        background-position: left top;
     1004        background-image: url("../images/ed-bg-vs.gif");
     1005        background-image: -webkit-gradient(linear, left top, from(#eff8ff), to(#cfdfe9));
     1006        background-image: -webkit-linear-gradient(#eff8ff, #cfdfe9);
     1007        background-image: -moz-linear-gradient(#eff8ff, #cfdfe9);
     1008        background-image: linear-gradient(#eff8ff, #cfdfe9);
     1009       
    9381010}
    9391011
    9401012.wp-admin #mceModalBlocker {
     
    9421014}
    9431015
    9441016.wp-admin .clearlooks2 .mceFocus .mceTop .mceLeft {
    945         background: #444444;
     1017        background-color: #444444;
    9461018        border-left: 1px solid #999;
    9471019        border-top: 1px solid #999;
    9481020        -moz-border-radius: 4px 0 0 0;
     
    9521024}
    9531025
    9541026.wp-admin .clearlooks2 .mceFocus .mceTop .mceRight {
    955         background: #444444;
     1027        background-color: #444444;
    9561028        border-right: 1px solid #999;
    9571029        border-top: 1px solid #999;
    9581030        border-top-right-radius: 4px;
     
    9621034}
    9631035
    9641036.wp-admin .clearlooks2 .mceMiddle .mceLeft {
    965         background: #f1f1f1;
     1037        background-color: #f1f1f1;
    9661038        border-left: 1px solid #999;
    9671039}
    9681040
    9691041.wp-admin .clearlooks2 .mceMiddle .mceRight {
    970         background: #f1f1f1;
     1042        background-color: #f1f1f1;
    9711043        border-right: 1px solid #999;
    9721044}
    9731045
    9741046.wp-admin .clearlooks2 .mceBottom {
    975         background: #f1f1f1;
     1047        background-color: #f1f1f1;
    9761048        border-bottom: 1px solid #999;
    9771049}
    9781050
    9791051.wp-admin .clearlooks2 .mceBottom .mceLeft {
    980         background: #f1f1f1;
     1052        background-color: #f1f1f1;
    9811053        border-bottom: 1px solid #999;
    9821054        border-left: 1px solid #999;
    9831055}
    9841056
    9851057.wp-admin .clearlooks2 .mceBottom .mceCenter {
    986         background: #f1f1f1;
     1058        background-color: #f1f1f1;
    9871059        border-bottom: 1px solid #999;
    9881060}
    9891061
    9901062.wp-admin .clearlooks2 .mceBottom .mceRight {
    991         background: #f1f1f1;
     1063        background-color: #f1f1f1;
    9921064        border-bottom: 1px solid #999;
    9931065        border-right: 1px solid #999;
    9941066}
     
    10261098}
    10271099
    10281100#adminmenu li.wp-menu-separator {
    1029         background: transparent url(../images/menu-arrows.gif) no-repeat scroll left 5px;
     1101        background: transparent url("../images/menu-arrows.gif") no-repeat scroll left 5px;
    10301102}
    10311103
    10321104.folded #adminmenu li.wp-menu-separator {
    1033         background: transparent url(../images/menu-arrows.gif) no-repeat scroll right -34px;
     1105        background: transparent url("../images/menu-arrows.gif") no-repeat scroll right -34px;
    10341106}
    10351107
    10361108#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
    10371109#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
    1038         background: transparent url(../images/menu-bits-vs.gif?ver=20101102) no-repeat scroll left -207px;
     1110        background: transparent url("../images/menu-bits-vs.gif?ver=20101102") no-repeat scroll left -207px;
    10391111}
    10401112
    10411113#adminmenu .wp-has-submenu:hover .wp-menu-toggle,
    10421114#adminmenu .wp-menu-open .wp-menu-toggle {
    1043         background: transparent url(../images/menu-bits-vs.gif?ver=20101102) no-repeat scroll left -109px;
     1115        background: transparent url("../images/menu-bits-vs.gif?ver=20101102") no-repeat scroll left -109px;
    10441116}
    10451117
    10461118#adminmenu a.menu-top {
    1047         background: #eff8ff url(../images/menu-bits-vs.gif?ver=20101102) repeat-x scroll left -379px;
     1119        background: #eff8ff url("../images/menu-bits-vs.gif?ver=20101102") repeat-x scroll left -379px;
    10481120}
    10491121
    10501122#adminmenu .wp-submenu a {
    1051         background: #fff url(../images/menu-bits-vs.gif?ver=20101102) no-repeat scroll 0 -99px;
     1123        background: #fff url("../images/menu-bits-vs.gif?ver=20101102") no-repeat scroll 0 -99px;
    10521124}
    10531125
    10541126#adminmenu .wp-has-current-submenu ul li a {
     
    10561128}
    10571129
    10581130#adminmenu .wp-has-current-submenu ul li a.current {
    1059         background: url(../images/menu-dark-vs.gif) top left no-repeat !important;
     1131        background: url("../images/menu-dark-vs.gif") top left no-repeat !important;
    10601132}
    10611133
    10621134.wp-has-current-submenu .wp-submenu {
     
    10691141
    10701142#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
    10711143#adminmenu li.current a.menu-top {
    1072         background: #d0dfe9 url(../images/menu-bits-vs.gif?ver=20101102) top left repeat-x;
     1144        background: #d0dfe9 url("../images/menu-bits-vs.gif?ver=20101102") top left repeat-x;
    10731145        border: #5589aa 1px solid;
    10741146        color: #464646;
    10751147}
     
    10811153}
    10821154
    10831155#adminmenu li.wp-has-current-submenu ul li a {
    1084         background: url(../images/menu-dark-vs.gif) bottom left no-repeat !important;
     1156        background: url("../images/menu-dark-vs.gif") bottom left no-repeat !important;
    10851157}
    10861158
    10871159#adminmenu li.wp-has-current-submenu ul {
     
    10891161}
    10901162
    10911163#adminmenu .wp-submenu .current a.current {
    1092         background: transparent url(../images/menu-bits-vs.gif?ver=20101102) no-repeat scroll  0 -289px;
     1164        background: transparent url("../images/menu-bits-vs.gif?ver=20101102") no-repeat scroll  0 -289px;
    10931165}
    10941166
    10951167#adminmenu .wp-submenu a:hover {
     
    11121184
    11131185.folded #adminmenu li.menu-top,
    11141186#adminmenu .wp-submenu .wp-submenu-head {
    1115         background: #eff8ff url(../images/menu-bits-vs.gif?ver=20101102) repeat-x scroll left -379px;
     1187        background: #eff8ff url("../images/menu-bits-vs.gif?ver=20101102") repeat-x scroll left -379px;
    11161188}
    11171189
    11181190.folded #adminmenu li.wp-has-current-submenu,
    11191191.folded #adminmenu li.menu-top.current {
    1120         background: #e0e0e0 url(../images/menu-bits-vs.gif?ver=20101102) top left repeat-x;
     1192        background: #e0e0e0 url("../images/menu-bits-vs.gif?ver=20101102") top left repeat-x;
    11211193        border: #5589aa 1px solid;
    11221194        color: #464646;
    11231195}
    11241196
    11251197#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
    1126         background: #d0dfe9 url(../images/menu-bits-vs.gif?ver=20101102) repeat-x 0% 0%;
     1198        background: #d0dfe9 url("../images/menu-bits-vs.gif?ver=20101102") repeat-x 0% 0%;
    11271199        border: 1px solid;
    11281200        color: #464646;
    11291201}
     
    13881460body.press-this .postbox:hover .handlediv,
    13891461body.press-this .stuffbox:hover .handlediv,
    13901462.meta-box-sortables .postbox:hover .handlediv {
    1391         background: transparent url(../images/menu-bits-vs.gif?ver=20101102) no-repeat scroll left -111px;
     1463        background: transparent url("../images/menu-bits-vs.gif?ver=20101102") no-repeat scroll left -111px;
    13921464}
    13931465
    13941466#major-publishing-actions {
     
    14881560
    14891561#favorite-first {
    14901562        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));
     1563        background-color: #f1f1f1; /* fallback color */
     1564        background-image: -webkit-gradient(linear, left bottom, left top, from(#e7e7e7), to(#fff));
     1565        background-image: -webkit-linear-gradient(bottom,  #e7e7e7,  #fff);
     1566        background-image: -moz-linear-gradient(bottom,  #e7e7e7,  #fff);
     1567        background-image: linear-gradient(bottom,  #e7e7e7,  #fff);
    14941568}
    14951569
    14961570#favorite-inside {
     
    14991573}
    15001574
    15011575#favorite-toggle {
    1502         background: transparent url(../images/fav-arrow.gif?ver=20100531) no-repeat 0 -4px;
     1576        background: transparent url("../images/fav-arrow.gif?ver=20100531") no-repeat 0 -4px;
    15031577}
    15041578
    15051579#favorite-actions a {
     
    15251599
    15261600#icon-edit,
    15271601#icon-post {
    1528         background: transparent url(../images/icons32-vs.png?ver=20100531) no-repeat -552px -5px;
     1602        background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -552px -5px;
    15291603}
    15301604
    15311605#icon-index {
    1532         background: transparent url(../images/icons32-vs.png?ver=20100531) no-repeat -137px -5px;
     1606        background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -137px -5px;
    15331607}
    15341608
    15351609#icon-upload {
    1536         background: transparent url(../images/icons32-vs.png?ver=20100531) no-repeat -251px -5px;
     1610        background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -251px -5px;
    15371611}
    15381612
    15391613#icon-link-manager,
    15401614#icon-link,
    15411615#icon-link-category {
    1542         background: transparent url(../images/icons32-vs.png?ver=20100531) no-repeat -190px -5px;
     1616        background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -190px -5px;
    15431617}
    15441618
    15451619#icon-edit-pages,
    15461620#icon-page {
    1547         background: transparent url(../images/icons32-vs.png?ver=20100531) no-repeat -312px -5px;
     1621        background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -312px -5px;
    15481622}
    15491623
    15501624#icon-edit-comments {
    1551         background: transparent url(../images/icons32-vs.png?ver=20100531) no-repeat -72px -5px;
     1625        background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -72px -5px;
    15521626}
    15531627
    15541628#icon-themes {
    1555         background: transparent url(../images/icons32-vs.png?ver=20100531) no-repeat -11px -5px;
     1629        background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -11px -5px;
    15561630}
    15571631
    15581632#icon-plugins {
    1559         background: transparent url(../images/icons32-vs.png?ver=20100531) no-repeat -370px -5px;
     1633        background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -370px -5px;
    15601634}
    15611635
    15621636#icon-users,
    15631637#icon-profile,
    15641638#icon-user-edit {
    1565         background: transparent url(../images/icons32-vs.png?ver=20100531) no-repeat -600px -5px;
     1639        background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -600px -5px;
    15661640}
    15671641
    15681642#icon-tools,
    15691643#icon-admin {
    1570         background: transparent url(../images/icons32-vs.png?ver=20100531) no-repeat -432px -5px;
     1644        background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -432px -5px;
    15711645}
    15721646
    15731647#icon-options-general {
    1574         background: transparent url(../images/icons32-vs.png?ver=20100531) no-repeat -492px -5px;
     1648        background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -492px -5px;
    15751649}
    15761650
    15771651#icon-ms-admin {
    1578         background: transparent url(../images/icons32-vs.png?ver=20100531) no-repeat -659px -5px;
     1652        background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -659px -5px;
    15791653}
    15801654
    15811655.view-switch #view-switch-list {
    1582         background: transparent url(../images/list.png) no-repeat 0 0;
     1656        background: transparent url("../images/list.png") no-repeat 0 0;
    15831657}
    15841658
    15851659.view-switch .current #view-switch-list {
    1586         background: transparent url(../images/list.png) no-repeat -40px 0;
     1660        background: transparent url("../images/list.png") no-repeat -40px 0;
    15871661}
    15881662
    15891663.view-switch #view-switch-excerpt {
    1590         background: transparent url(../images/list.png) no-repeat -20px 0;
     1664        background: transparent url("../images/list.png") no-repeat -20px 0;
    15911665}
    15921666
    15931667.view-switch .current #view-switch-excerpt {
    1594         background: transparent url(../images/list.png) no-repeat -60px 0;
     1668        background: transparent url("../images/list.png") no-repeat -60px 0;
    15951669}
    15961670
    15971671#header-logo {
    1598         background: transparent url(../images/wp-logo-vs.png?ver=20101102) no-repeat scroll center center;
     1672        background: transparent url("../images/wp-logo-vs.png?ver=20101102") no-repeat scroll center center;
    15991673}
    16001674
    16011675.popular-tags,
     
    16271701
    16281702#widgets-left .sidebar-name {
    16291703        background-color: #aaa;
    1630         background-image: url(../images/ed-bg-vs.gif?ver=20101102);
     1704        background-image: url("../images/ed-bg-vs.gif?ver=20101102");
     1705        background-image: -webkit-gradient(linear, left top, from(#436d92), to(#d5e6f2));
     1706        background-image: -webkit-linear-gradient(#436d92, #d5e6f2);
     1707        background-image: -moz-linear-gradient(#436d92, #d5e6f2);
     1708        background-image: linear-gradient(#436d92, #d5e6f2);
    16311709        text-shadow: #fff 0 1px 0;
    16321710        border-color: #dfdfdf;
    16331711}
    16341712
    16351713#widgets-right .sidebar-name {
    1636         background-image: url(../images/button-grad.png);
     1714        background-image: url("../images/button-grad.png");
     1715        background-image: -webkit-linear-gradient(#5e89af, #436d92);
     1716        background-image: -webkit-gradient(linear, left top, from(#5e89af), to(#436d92));
     1717        background-image: -moz-linear-gradient(#5e89af, #436d92);
     1718        background-image: -o-gradient(#5e89af, #436d92);
     1719        background-image: linear-gradient(#5e89af, #436d92);
    16371720        text-shadow: #174f69 0 -1px 0;
    16381721        background-color: #cfdfe9;
    16391722        border-color: #174f69;
     
    16501733}
    16511734
    16521735#widgets-left .sidebar-name-arrow {
    1653         background: transparent url(../images/menu-bits-vs.gif?ver=20101102) no-repeat scroll left -109px;
     1736        background: transparent url("../images/menu-bits-vs.gif?ver=20101102") no-repeat scroll left -109px;
    16541737}
    16551738
    16561739#widgets-right .sidebar-name-arrow {
     
    16961779}
    16971780
    16981781#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;
     1782        background-color: #cfdfe9;
     1783        background-repeat: repeat-x;
     1784        background-attachment: scroll;
     1785        background-position: left top;
     1786        background-image: url("../images/ed-bg-vs.gif?ver=20101102");
     1787        background-image: -webkit-gradient(linear, left top, from(#436d92), to(#d5e6f2));
     1788        background-image: -webkit-linear-gradient(#436d92, #d5e6f2);
     1789        background-image: -moz-linear-gradient(#436d92, #d5e6f2);
     1790        background-image: linear-gradient(#436d92, #d5e6f2);
    17001791        border-top: solid #D1E5EE 1px;
    17011792}
    17021793
    17031794#menu-management .nav-tab-active {
    17041795        background: #eff8ff;
    17051796        border-bottom-color: #eff8ff;
    1706 }
     1797}
     1798 No newline at end of file
  • press-this.dev.css

     
    490490}
    491491
    492492.button-primary {
    493         background: #21759B url(../images/button-grad.png) repeat-x scroll left top;
     493        background-color: #21759B;
     494        background-repeat: repeat-x;
     495        background-attachment: scroll;
     496        background-position: left top;
     497        background-image:  url("../images/button-grad.png");
     498        background-image: -webkit-gradient(linear, left top, from(#5e89af), to(#436d92));
     499        background-image: -webkit-linear-gradient(#5e89af, #436d92);
     500        background-image: -moz-linear-gradient(#5e89af, #436d92);
     501        background-image: -o-gradient(#5e89af, #436d92);
     502        background-image: linear-gradient(#5e89af, #436d92);
    494503        border-color: #21759B;
    495504        color: #fff;
    496505}
  • colors-fresh.dev.css

     
    305305.button,
    306306.submit input,
    307307.button-secondary {
    308         background: #f2f2f2 url(../images/white-grad.png) repeat-x scroll left top;
     308        background-color: #f2f2f2;
     309        background-repeat: repeat-x;
     310        background-attachment: scroll;
     311        background-position: left top;
     312        background-image:  url("../images/white-grad.png");
     313        background-image: -webkit-gradient(linear, left top, from(#fff), to(#ededed));
     314        background-image: -webkit-linear-gradient(#fff, #ededed);
     315        background-image: -moz-linear-gradient(#fff, #ededed);
     316        background-image: linear-gradient(#fff, #ededed);
    309317        text-shadow: rgba(255,255,255,1) 0 1px 0;
    310318}
    311319
    312320.button:active,
    313321.submit input:active,
    314322.button-secondary:active {
    315         background: #eee url(../images/white-grad-active.png) repeat-x scroll left top;
     323        background-color: #eee;
     324        background-repeat: repeat-x;
     325        background-attachment: scroll;
     326        background-position: left top;
     327        background-image: url("../images/white-grad-active.png");
     328        background-image: -webkit-gradient(linear, left top, from(#ededed), to(#fff));
     329        background-image: -webkit-linear-gradient(#ededed, #fff);
     330        background-image: -moz-linear-gradient(#ededed, #fff);
     331        background-image: linear-gradient(#ededed, #fff);
    316332}
    317333
    318334input.button-primary,
     
    321337        border-color: #298cba;
    322338        font-weight: bold;
    323339        color: #fff;
    324         background: #21759B url(../images/button-grad.png) repeat-x scroll left top;
     340        background-color: #21759B;
     341        background-repeat: repeat-x;
     342        background-attachment: scroll;
     343        background-position: left top;
     344        background-image:  url("../images/button-grad.png");
     345        background-image: -webkit-gradient(linear, left top, from(#5e89af), to(#436d92));
     346        background-image: -webkit-linear-gradient(#5e89af, #436d92);
     347        background-image: -moz-linear-gradient(#5e89af, #436d92);
     348        background-image: -o-gradient(#5e89af, #436d92);
     349        background-image: linear-gradient(#5e89af, #436d92);
    325350        text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
    326351}
    327352
    328353input.button-primary:active,
    329354button.button-primary:active,
    330355a.button-primary:active {
    331         background: #21759b url(../images/button-grad-active.png) repeat-x scroll left top;
     356        background-color: #21759b;
     357        background-repeat: repeat-x;
     358        background-attachment: scroll;
     359        background-position: left top;
     360        background-image: url("../images/button-grad-active.png");
     361        background-image: -webkit-gradient(linear, left top, from(#436d92), to(#5e89af));
     362        background-image: -webkit-linear-gradient(#436d92, #5e89af);
     363        background-image: -moz-linear-gradient(#436d92, #5e89af);
     364        background-image: linear-gradient(#436d92, #5e89af);
    332365        color: #eaf2fa;
    333366}
    334367
     
    766799        border-color: #dfdfdf;
    767800        background-color: #dfdfdf;
    768801        background-image: url("../images/ed-bg.gif");
     802        background-image: -webkit-gradient(linear, left top, from(#e9e9e9), to(#dfdfdf));
     803        background-image: -webkit-linear-gradient(#e9e9e9, #dfdfdf);
     804        background-image: -moz-linear-gradient(#e9e9e9, #dfdfdf);
     805        background-image: linear-gradient(#e9e9e9, #dfdfdf);
    769806}
    770807
    771808#ed_toolbar input {
     
    933970}
    934971
    935972.wp_themeSkin tr.mceFirst td.mceToolbar {
    936         background: #dfdfdf url("../images/ed-bg.gif") repeat-x scroll left top;
     973        background-color: #dfdfdf;
     974        background-repeat: repeat-x;
     975        background-attachment: scroll;
     976        background-position: left top;
     977        background-image: url("../images/ed-bg.gif");
     978        background-image: -webkit-gradient(linear, left top, from(#e9e9e9), to(#dfdfdf));
     979        background-image: -webkit-linear-gradient(#e9e9e9, #dfdfdf);
     980        background-image: -moz-linear-gradient(#e9e9e9, #dfdfdf);
     981        background-image: linear-gradient(#e9e9e9, #dfdfdf);
    937982        border-color: #dfdfdf;
    938983}
    939984
     
    16161661
    16171662#widgets-left .sidebar-name {
    16181663        background-color: #aaa;
    1619         background-image: url(../images/ed-bg.gif);
     1664        background-image: url("../images/ed-bg.gif");
     1665        background-image: -webkit-gradient(linear, left top, from(#e9e9e9), to(#dfdfdf));
     1666        background-image: -webkit-linear-gradient(#e9e9e9, #dfdfdf);
     1667        background-image: -moz-linear-gradient(#e9e9e9, #dfdfdf);
     1668        background-image: linear-gradient(#e9e9e9, #dfdfdf);
    16201669        text-shadow: #fff 0 1px 0;
    16211670        border-color: #dfdfdf;
    16221671}
    16231672
    16241673#widgets-right .sidebar-name {
    1625         background-image: url(../images/fav.png);
     1674        background-image: url("../images/fav.png");
     1675        background-image: -webkit-gradient(linear, left top, from(#919191), to(#636363));
     1676        background-image: -webkit-linear-gradient(#919191, #636363);
     1677        background-image: -moz-linear-gradient(#919191, #636363);
     1678        background-image: linear-gradient(#919191, #636363);
    16261679        text-shadow: #3f3f3f 0 -1px 0;
    16271680        background-color: #636363;
    16281681        border-color: #636363;
  • 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;
     102        background-repeat: repeat-x;
     103        background-attachment: scroll;
     104        background-position: left top;
     105        background-image:  url("../images/white-grad.png");
     106        background-image: -webkit-gradient(linear, left top, from(#fff), to(#ededed));
     107        background-image: -webkit-linear-gradient(#fff, #ededed);
     108        background-image: -moz-linear-gradient(#fff, #ededed);
     109        background-image: linear-gradient(#fff, #ededed);
    102110}
    103111
    104112.button:active, .submit input:active, .button-secondary:active {
    105         background: #eee url(../images/white-grad-active.png) repeat-x scroll left top;
     113        background-color: #eee;
     114        background-repeat: repeat-x;
     115        background-attachment: scroll;
     116        background-position: left top;
     117        background-image: url("../images/white-grad-active.png");
     118        background-image: -webkit-gradient(linear, left top, from(#ededed), to(#fff));
     119        background-image: -webkit-linear-gradient(#ededed, #fff);
     120        background-image: -moz-linear-gradient(#ededed, #fff);
     121        background-image: linear-gradient(#ededed, #fff);
    106122}
    107123
    108124textarea {
  • wp-admin.dev.css

     
    515515        margin-bottom: -3px;
    516516        border-bottom-width: 3px;
    517517        background-image: url("../images/ed-bg.gif");
     518        background-image: -webkit-gradient(linear, left top, from(#e9e9e9), to(#dfdfdf));
     519        background-image: -webkit-linear-gradient(#e9e9e9, #dfdfdf);
     520        background-image: -moz-linear-gradient(#e9e9e9, #dfdfdf);
     521        background-image: linear-gradient(#e9e9e9, #dfdfdf);
    518522        background-position: left top;
    519523        background-repeat: repeat-x;
    520524}