Make WordPress Core

Ticket #16726: 16726.patch

File 16726.patch, 4.7 KB (added by ocean90, 14 years ago)
  • wp-includes/css/admin-bar.dev.css

     
    2929
    3030#wpadminbar {
    3131        direction: ltr;
    32         background-color: #777;
    33         background-image: -moz-linear-gradient(bottom,  #666,  #7f7f7f);
    34         background-image: -webkit-gradient(linear, left bottom, left top, from(#666), to(#7f7f7f));
     32        background: #777; /* Fallback */
     33        background-image: -ms-linear-gradient(bottom, #666, #7f7f7f); /* IE10 */
     34        background-image: -moz-linear-gradient(bottom, #666, #7f7f7f); /* Firefox */
     35        background-image: -o-linear-gradient(bottom, #666, #7f7f7f); /* Opera */
     36        background-image: -webkit-gradient(linear, left bottom, left top, from(#666), to(#7f7f7f)); /* old Webkit */
     37        background-image: -webkit-linear-gradient(bottom, #666, #7f7f7f); /* new Webkit */
     38        background-image: linear-gradient(bottom, #666, #7f7f7f); /* proposed W3C Markup */
    3539        color: #ddd;
    3640        font: normal 12px/28px Arial, Helvetica, sans-serif;
    3741        height: 28px;
     
    139143
    140144#wpadminbar .quicklinks li:hover,
    141145#wpadminbar .quicklinks .selected {
    142         background: #555;
    143         background: -moz-linear-gradient(bottom,  #555,  #3e3e3e);
    144         background: -webkit-gradient(linear, left bottom, left top, from(#555), to(#3e3e3e));
     146        background: #555; /* Fallback */
     147        background-image: -ms-linear-gradient(bottom, #555, #3e3e3e); /* IE10 */
     148        background-image: -moz-linear-gradient(bottom, #555, #3e3e3e); /* Firefox */
     149        background-image: -o-linear-gradient(bottom, #555, #3e3e3e); /* Opera */
     150        background-image: -webkit-gradient(linear, left bottom, left top, from(#555), to(#3e3e3e)); /* old Webkit */
     151        background-image: -webkit-linear-gradient(bottom, #555, #3e3e3e); /* new Webkit */
     152        background-image: linear-gradient(bottom, #555, #3e3e3e); /* proposed W3C Markup */
    145153}
    146154
    147155#wpadminbar .quicklinks .menupop li:hover {
    148         background: #888;
    149         background: -moz-linear-gradient(bottom,  #888,  #9d9d9d);
    150         background: -webkit-gradient(linear, left bottom, left top, from(#888), to(#9d9d9d));
     156        background: #888; /* Fallback */
     157        background-image: -ms-linear-gradient(bottom, #888, #9d9d9d); /* IE10 */
     158        background-image: -moz-linear-gradient(bottom, #888, #9d9d9d); /* Firefox */
     159        background-image: -o-linear-gradient(bottom, #888, #9d9d9d); /* Opera */
     160        background-image: -webkit-gradient(linear, left bottom, left top, from(#888), to(#9d9d9d)); /* old Webkit */
     161        background-image: -webkit-linear-gradient(bottom, #888, #9d9d9d); /* new Webkit */
     162        background-image: linear-gradient(bottom, #888, #9d9d9d); /* proposed W3C Markup */
    151163}
    152164
    153165#wpadminbar .quicklinks .menupop a > span {
     
    178190}
    179191
    180192#wpadminbar .quicklinks a:hover span#ab-awaiting-mod,
    181 #wpadminbar .quicklinks a:hover span#ab-updates  {
     193#wpadminbar .quicklinks a:hover span#ab-updates {
    182194        background: #fff;
    183195        color: #000;
    184196}
     
    256268        text-shadow: 0px 1px 0px #eee;
    257269        cursor: pointer;
    258270        float: left;
    259         background: #aaa;
    260         background: -moz-linear-gradient(bottom,  #aaa,  #cecece);
    261         background: -webkit-gradient(linear, left bottom, left top, from(#aaa), to(#cecece));
     271        background: #aaa; /* Fallback */
     272        background-image: -ms-linear-gradient(bottom, #aaa, #cecece); /* IE10 */
     273        background-image: -moz-linear-gradient(bottom, #aaa, #cecece); /* Firefox */
     274        background-image: -o-linear-gradient(bottom, #aaa, #cecece); /* Opera */
     275        background-image: -webkit-gradient(linear, left bottom, left top, from(#aaa), to(#cecece)); /* old Webkit */
     276        background-image: -webkit-linear-gradient(bottom, #aaa, #cecece); /* new Webkit */
     277        background-image: linear-gradient(bottom, #aaa, #cecece); /* proposed W3C Markup */
    262278        -webkit-border-radius: 10px;
    263279        -khtml-border-radius: 10px;
    264280        -moz-border-radius: 10px;
     
    271287}
    272288
    273289#wpadminbar #adminbarsearch .adminbar-button:active {
    274         background: #a0a0a0;
    275         background:-moz-linear-gradient(bottom,  #a0a0a0,  #c1c1c1);
    276         background:-webkit-gradient(linear, left bottom, left top, from(#a0a0a0), to(#c1c1c1));
     290        background: #a0a0a0; /* Fallback */
     291        background-image: -ms-linear-gradient(bottom, #a0a0a0, #c1c1c1); /* IE10 */
     292        background-image: -moz-linear-gradient(bottom, #a0a0a0, #c1c1c1); /* Firefox */
     293        background-image: -o-linear-gradient(bottom, #a0a0a0, #c1c1c1); /* Opera */
     294        background-image: -webkit-gradient(linear, left bottom, left top, from(#a0a0a0), to(#c1c1c1)); /* old Webkit */
     295        background-image: -webkit-linear-gradient(bottom, #a0a0a0, #c1c1c1); /* new Webkit */
     296        background-image: linear-gradient(bottom, #a0a0a0, #c1c1c1); /* proposed W3C Markup */
    277297        -moz-box-shadow: inset 1px 1px 1px #9b9b9b;
    278298        -webkit-box-shadow: inset 1px 1px 1px #9b9b9b;
    279299        box-shadow: inset 1px 1px 1px #9b9b9b;