Make WordPress Core

Ticket #16461: colors-classic.dev.diff

File colors-classic.dev.diff, 19.1 KB (added by cyberskull, 14 years ago)

diff file of the changes to colors-classic.dev.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-repeat: repeat-x;
     142        background-position: left top;
     143        background-color: #cfdfe9;
     144        background-image: url("../images/blue-grad.png?ver=20101102");
     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 {
     
    570619#footer {
    571620        color: #777;
    572621        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));
     622        background-color: #cfdfe9; /* fallback color */
     623        background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#eff8ff));
     624        background-image: -webkit-linear-gradient(bottom,  #cfdfe9,  #eff8ff);
     625        background-image: -moz-linear-gradient(bottom,  #cfdfe9,  #eff8ff);
     626        background-image: linear-gradient(bottom,  #cfdfe9,  #eff8ff);
    576627}
    577628
    578629#media-items,
     
    659710}
    660711
    661712.curtime #timestamp {
    662         background-image: url(../images/date-button.gif);
     713        background-image: url("../images/date-button.gif");
    663714}
    664715
    665716#quicktags #ed_link {
     
    676727
    677728.tagchecklist span a,
    678729#bulk-titles div a {
    679         background: url(../images/xit.gif) no-repeat;
     730        background: url("../images/xit.gif") no-repeat;
    680731}
    681732
    682733.tagchecklist span a:hover,
    683734#bulk-titles div a:hover {
    684         background: url(../images/xit.gif) no-repeat -10px 0;
     735        background: url("../images/xit.gif") no-repeat -10px 0;
    685736}
    686737
    687738#update-nag, .update-nag {
     
    695746}
    696747
    697748#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));
     749        border-bottom: #b0c8d7 1px solid;
     750        background-color: #cfdfe9; /* fallback color */
     751        background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#eff8ff));
     752        background-image: -webkit-linear-gradient(bottom,  #cfdfe9,  #eff8ff);
     753        background-image: -moz-linear-gradient(bottom,  #cfdfe9,  #eff8ff);
     754        background-image: linear-gradient(bottom,  #cfdfe9,  #eff8ff);
    702755}
    703756
    704757#wphead h1 a {
     
    766819        border-color: #cfdfe9;
    767820        background-color: #cfdfe9;
    768821        background-image: url("../images/ed-bg-vs.gif?ver=20101102");
     822        background-image: -webkit-gradient(linear, left top, from(#436d92), to(#d5e6f2));
     823        background-image: -webkit-linear-gradient(#436d92, #d5e6f2);
     824        background-image: -moz-linear-gradient(#436d92, #d5e6f2);
     825        background-image: linear-gradient(#436d92, #d5e6f2);
    769826}
    770827
    771828#ed_toolbar input {
     
    933990}
    934991
    935992.wp_themeSkin tr.mceFirst td.mceToolbar {
    936         background: #cfdfe9 url("../images/ed-bg-vs.gif?ver=20101102") repeat-x scroll left top;
    937993        border-color: #cfdfe9;
     994        background-repeat: repeat-x;
     995        background-attachment: scroll;
     996        background-position: left top;
     997        background-image: url("../images/ed-bg-vs.gif");
     998        background-image: -webkit-gradient(linear, left top, from(#eff8ff), to(#cfdfe9));
     999        background-image: -webkit-linear-gradient(#eff8ff, #cfdfe9);
     1000        background-image: -moz-linear-gradient(#eff8ff, #cfdfe9);
     1001        background-image: linear-gradient(#eff8ff, #cfdfe9);
     1002       
    9381003}
    9391004
    9401005.wp-admin #mceModalBlocker {
     
    9421007}
    9431008
    9441009.wp-admin .clearlooks2 .mceFocus .mceTop .mceLeft {
    945         background: #444444;
     1010        background-color: #444444;
    9461011        border-left: 1px solid #999;
    9471012        border-top: 1px solid #999;
    9481013        -moz-border-radius: 4px 0 0 0;
     
    9521017}
    9531018
    9541019.wp-admin .clearlooks2 .mceFocus .mceTop .mceRight {
    955         background: #444444;
     1020        background-color: #444444;
    9561021        border-right: 1px solid #999;
    9571022        border-top: 1px solid #999;
    9581023        border-top-right-radius: 4px;
     
    9621027}
    9631028
    9641029.wp-admin .clearlooks2 .mceMiddle .mceLeft {
    965         background: #f1f1f1;
     1030        background-color: #f1f1f1;
    9661031        border-left: 1px solid #999;
    9671032}
    9681033
    9691034.wp-admin .clearlooks2 .mceMiddle .mceRight {
    970         background: #f1f1f1;
     1035        background-color: #f1f1f1;
    9711036        border-right: 1px solid #999;
    9721037}
    9731038
    9741039.wp-admin .clearlooks2 .mceBottom {
    975         background: #f1f1f1;
     1040        background-color: #f1f1f1;
    9761041        border-bottom: 1px solid #999;
    9771042}
    9781043
    9791044.wp-admin .clearlooks2 .mceBottom .mceLeft {
    980         background: #f1f1f1;
     1045        background-color: #f1f1f1;
    9811046        border-bottom: 1px solid #999;
    9821047        border-left: 1px solid #999;
    9831048}
    9841049
    9851050.wp-admin .clearlooks2 .mceBottom .mceCenter {
    986         background: #f1f1f1;
     1051        background-color: #f1f1f1;
    9871052        border-bottom: 1px solid #999;
    9881053}
    9891054
    9901055.wp-admin .clearlooks2 .mceBottom .mceRight {
    991         background: #f1f1f1;
     1056        background-color: #f1f1f1;
    9921057        border-bottom: 1px solid #999;
    9931058        border-right: 1px solid #999;
    9941059}
     
    10261091}
    10271092
    10281093#adminmenu li.wp-menu-separator {
    1029         background: transparent url(../images/menu-arrows.gif) no-repeat scroll left 5px;
     1094        background: transparent url("../images/menu-arrows.gif") no-repeat scroll left 5px;
    10301095}
    10311096
    10321097.folded #adminmenu li.wp-menu-separator {
    1033         background: transparent url(../images/menu-arrows.gif) no-repeat scroll right -34px;
     1098        background: transparent url("../images/menu-arrows.gif") no-repeat scroll right -34px;
    10341099}
    10351100
    10361101#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
    10371102#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;
     1103        background: transparent url("../images/menu-bits-vs.gif?ver=20101102") no-repeat scroll left -207px;
    10391104}
    10401105
    10411106#adminmenu .wp-has-submenu:hover .wp-menu-toggle,
    10421107#adminmenu .wp-menu-open .wp-menu-toggle {
    1043         background: transparent url(../images/menu-bits-vs.gif?ver=20101102) no-repeat scroll left -109px;
     1108        background: transparent url("../images/menu-bits-vs.gif?ver=20101102") no-repeat scroll left -109px;
    10441109}
    10451110
    10461111#adminmenu a.menu-top {
    1047         background: #eff8ff url(../images/menu-bits-vs.gif?ver=20101102) repeat-x scroll left -379px;
     1112        background: #eff8ff url("../images/menu-bits-vs.gif?ver=20101102") repeat-x scroll left -379px;
    10481113}
    10491114
    10501115#adminmenu .wp-submenu a {
    1051         background: #fff url(../images/menu-bits-vs.gif?ver=20101102) no-repeat scroll 0 -99px;
     1116        background: #fff url("../images/menu-bits-vs.gif?ver=20101102") no-repeat scroll 0 -99px;
    10521117}
    10531118
    10541119#adminmenu .wp-has-current-submenu ul li a {
     
    10561121}
    10571122
    10581123#adminmenu .wp-has-current-submenu ul li a.current {
    1059         background: url(../images/menu-dark-vs.gif) top left no-repeat !important;
     1124        background: url("../images/menu-dark-vs.gif") top left no-repeat !important;
    10601125}
    10611126
    10621127.wp-has-current-submenu .wp-submenu {
     
    10691134
    10701135#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
    10711136#adminmenu li.current a.menu-top {
    1072         background: #d0dfe9 url(../images/menu-bits-vs.gif?ver=20101102) top left repeat-x;
     1137        background: #d0dfe9 url("../images/menu-bits-vs.gif?ver=20101102") top left repeat-x;
    10731138        border: #5589aa 1px solid;
    10741139        color: #464646;
    10751140}
     
    10811146}
    10821147
    10831148#adminmenu li.wp-has-current-submenu ul li a {
    1084         background: url(../images/menu-dark-vs.gif) bottom left no-repeat !important;
     1149        background: url("../images/menu-dark-vs.gif") bottom left no-repeat !important;
    10851150}
    10861151
    10871152#adminmenu li.wp-has-current-submenu ul {
     
    10891154}
    10901155
    10911156#adminmenu .wp-submenu .current a.current {
    1092         background: transparent url(../images/menu-bits-vs.gif?ver=20101102) no-repeat scroll  0 -289px;
     1157        background: transparent url("../images/menu-bits-vs.gif?ver=20101102") no-repeat scroll  0 -289px;
    10931158}
    10941159
    10951160#adminmenu .wp-submenu a:hover {
     
    11121177
    11131178.folded #adminmenu li.menu-top,
    11141179#adminmenu .wp-submenu .wp-submenu-head {
    1115         background: #eff8ff url(../images/menu-bits-vs.gif?ver=20101102) repeat-x scroll left -379px;
     1180        background: #eff8ff url("../images/menu-bits-vs.gif?ver=20101102") repeat-x scroll left -379px;
    11161181}
    11171182
    11181183.folded #adminmenu li.wp-has-current-submenu,
    11191184.folded #adminmenu li.menu-top.current {
    1120         background: #e0e0e0 url(../images/menu-bits-vs.gif?ver=20101102) top left repeat-x;
     1185        background: #e0e0e0 url("../images/menu-bits-vs.gif?ver=20101102") top left repeat-x;
    11211186        border: #5589aa 1px solid;
    11221187        color: #464646;
    11231188}
    11241189
    11251190#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%;
     1191        background: #d0dfe9 url("../images/menu-bits-vs.gif?ver=20101102") repeat-x 0% 0%;
    11271192        border: 1px solid;
    11281193        color: #464646;
    11291194}
     
    13881453body.press-this .postbox:hover .handlediv,
    13891454body.press-this .stuffbox:hover .handlediv,
    13901455.meta-box-sortables .postbox:hover .handlediv {
    1391         background: transparent url(../images/menu-bits-vs.gif?ver=20101102) no-repeat scroll left -111px;
     1456        background: transparent url("../images/menu-bits-vs.gif?ver=20101102") no-repeat scroll left -111px;
    13921457}
    13931458
    13941459#major-publishing-actions {
     
    14881553
    14891554#favorite-first {
    14901555        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));
     1556        background-color: #f1f1f1; /* fallback color */
     1557        background-image: -webkit-gradient(linear, left bottom, left top, from(#e7e7e7), to(#fff));
     1558        background-image: -webkit-linear-gradient(bottom,  #e7e7e7,  #fff);
     1559        background-image: -moz-linear-gradient(bottom,  #e7e7e7,  #fff);
     1560        background-image: linear-gradient(bottom,  #e7e7e7,  #fff);
    14941561}
    14951562
    14961563#favorite-inside {
     
    14991566}
    15001567
    15011568#favorite-toggle {
    1502         background: transparent url(../images/fav-arrow.gif?ver=20100531) no-repeat 0 -4px;
     1569        background: transparent url("../images/fav-arrow.gif?ver=20100531") no-repeat 0 -4px;
    15031570}
    15041571
    15051572#favorite-actions a {
     
    15251592
    15261593#icon-edit,
    15271594#icon-post {
    1528         background: transparent url(../images/icons32-vs.png?ver=20100531) no-repeat -552px -5px;
     1595        background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -552px -5px;
    15291596}
    15301597
    15311598#icon-index {
    1532         background: transparent url(../images/icons32-vs.png?ver=20100531) no-repeat -137px -5px;
     1599        background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -137px -5px;
    15331600}
    15341601
    15351602#icon-upload {
    1536         background: transparent url(../images/icons32-vs.png?ver=20100531) no-repeat -251px -5px;
     1603        background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -251px -5px;
    15371604}
    15381605
    15391606#icon-link-manager,
    15401607#icon-link,
    15411608#icon-link-category {
    1542         background: transparent url(../images/icons32-vs.png?ver=20100531) no-repeat -190px -5px;
     1609        background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -190px -5px;
    15431610}
    15441611
    15451612#icon-edit-pages,
    15461613#icon-page {
    1547         background: transparent url(../images/icons32-vs.png?ver=20100531) no-repeat -312px -5px;
     1614        background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -312px -5px;
    15481615}
    15491616
    15501617#icon-edit-comments {
    1551         background: transparent url(../images/icons32-vs.png?ver=20100531) no-repeat -72px -5px;
     1618        background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -72px -5px;
    15521619}
    15531620
    15541621#icon-themes {
    1555         background: transparent url(../images/icons32-vs.png?ver=20100531) no-repeat -11px -5px;
     1622        background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -11px -5px;
    15561623}
    15571624
    15581625#icon-plugins {
    1559         background: transparent url(../images/icons32-vs.png?ver=20100531) no-repeat -370px -5px;
     1626        background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -370px -5px;
    15601627}
    15611628
    15621629#icon-users,
    15631630#icon-profile,
    15641631#icon-user-edit {
    1565         background: transparent url(../images/icons32-vs.png?ver=20100531) no-repeat -600px -5px;
     1632        background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -600px -5px;
    15661633}
    15671634
    15681635#icon-tools,
    15691636#icon-admin {
    1570         background: transparent url(../images/icons32-vs.png?ver=20100531) no-repeat -432px -5px;
     1637        background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -432px -5px;
    15711638}
    15721639
    15731640#icon-options-general {
    1574         background: transparent url(../images/icons32-vs.png?ver=20100531) no-repeat -492px -5px;
     1641        background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -492px -5px;
    15751642}
    15761643
    15771644#icon-ms-admin {
    1578         background: transparent url(../images/icons32-vs.png?ver=20100531) no-repeat -659px -5px;
     1645        background: transparent url("../images/icons32-vs.png?ver=20100531") no-repeat -659px -5px;
    15791646}
    15801647
    15811648.view-switch #view-switch-list {
    1582         background: transparent url(../images/list.png) no-repeat 0 0;
     1649        background: transparent url("../images/list.png") no-repeat 0 0;
    15831650}
    15841651
    15851652.view-switch .current #view-switch-list {
    1586         background: transparent url(../images/list.png) no-repeat -40px 0;
     1653        background: transparent url("../images/list.png") no-repeat -40px 0;
    15871654}
    15881655
    15891656.view-switch #view-switch-excerpt {
    1590         background: transparent url(../images/list.png) no-repeat -20px 0;
     1657        background: transparent url("../images/list.png") no-repeat -20px 0;
    15911658}
    15921659
    15931660.view-switch .current #view-switch-excerpt {
    1594         background: transparent url(../images/list.png) no-repeat -60px 0;
     1661        background: transparent url("../images/list.png") no-repeat -60px 0;
    15951662}
    15961663
    15971664#header-logo {
    1598         background: transparent url(../images/wp-logo-vs.png?ver=20101102) no-repeat scroll center center;
     1665        background: transparent url("../images/wp-logo-vs.png?ver=20101102") no-repeat scroll center center;
    15991666}
    16001667
    16011668.popular-tags,
     
    16271694
    16281695#widgets-left .sidebar-name {
    16291696        background-color: #aaa;
    1630         background-image: url(../images/ed-bg-vs.gif?ver=20101102);
     1697        background-image: url("../images/ed-bg-vs.gif?ver=20101102");
     1698        background-image: -webkit-gradient(linear, left top, from(#436d92), to(#d5e6f2));
     1699        background-image: -webkit-linear-gradient(#436d92, #d5e6f2);
     1700        background-image: -moz-linear-gradient(#436d92, #d5e6f2);
     1701        background-image: linear-gradient(#436d92, #d5e6f2);
    16311702        text-shadow: #fff 0 1px 0;
    16321703        border-color: #dfdfdf;
    16331704}
    16341705
    16351706#widgets-right .sidebar-name {
    1636         background-image: url(../images/button-grad.png);
     1707        background-image: url("../images/button-grad.png");
     1708        background-image: -webkit-linear-gradient(#5e89af, #436d92);
     1709        background-image: -webkit-gradient(linear, left top, from(#5e89af), to(#436d92));
     1710        background-image: -moz-linear-gradient(#5e89af, #436d92);
     1711        background-image: -o-gradient(#5e89af, #436d92);
     1712        background-image: linear-gradient(#5e89af, #436d92);
    16371713        text-shadow: #174f69 0 -1px 0;
    16381714        background-color: #cfdfe9;
    16391715        border-color: #174f69;
     
    16501726}
    16511727
    16521728#widgets-left .sidebar-name-arrow {
    1653         background: transparent url(../images/menu-bits-vs.gif?ver=20101102) no-repeat scroll left -109px;
     1729        background: transparent url("../images/menu-bits-vs.gif?ver=20101102") no-repeat scroll left -109px;
    16541730}
    16551731
    16561732#widgets-right .sidebar-name-arrow {
     
    16961772}
    16971773
    16981774#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;
     1775        background-color: #cfdfe9;
     1776        background-repeat: repeat-x;
     1777        background-attachment: scroll;
     1778        background-position: left top;
     1779        background-image: url("../images/ed-bg-vs.gif?ver=20101102");
     1780        background-image: -webkit-gradient(linear, left top, from(#436d92), to(#d5e6f2));
     1781        background-image: -webkit-linear-gradient(#436d92, #d5e6f2);
     1782        background-image: -moz-linear-gradient(#436d92, #d5e6f2);
     1783        background-image: linear-gradient(#436d92, #d5e6f2);
    17001784        border-top: solid #D1E5EE 1px;
    17011785}
    17021786
     
    17041788        background: #eff8ff;
    17051789        border-bottom-color: #eff8ff;
    17061790}
     1791
     1792/* This is a placeholder. It is intended to replace fade-butt.png should it be used by anything. */
     1793#replace-fade-butt {
     1794        background-image linear-gradient(#fcfcfc, #e5e3e3);
     1795}
     1796 No newline at end of file