Make WordPress Core

Changeset 21459


Ignore:
Timestamp:
08/06/2012 05:21:41 PM (12 years ago)
Author:
azaozz
Message:

Replace last remaining gradients with css, standardize the gradient css cascade, props ocean90, fixes #16461

Location:
trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/css/colors-classic.dev.css

    r21439 r21459  
    203203.menu-item-handle,
    204204#fullscreen-topbar {
    205     background-color: #f5fafd; /* Fallback */
    206     background-image: -ms-linear-gradient(top, #f7fcfe, #eff8ff); /* IE10 */
    207     background-image: -moz-linear-gradient(top, #f7fcfe, #eff8ff); /* Firefox */
    208     background-image: -o-linear-gradient(top, #f7fcfe, #eff8ff); /* Opera */
    209     background-image: -webkit-gradient(linear, left top, left bottom, from(#f7fcfe), to(#eff8ff)); /* old Webkit */
    210     background-image: -webkit-linear-gradient(top, #f7fcfe, #eff8ff); /* new Webkit */
    211     background-image: linear-gradient(top, #f7fcfe, #eff8ff); /* proposed W3C Markup */
     205    background: #f5fafd;
     206    background-image: -webkit-gradient(linear, left bottom, left top, from(#eff8ff), to(#f7fcfe));
     207    background-image: -webkit-linear-gradient(bottom, #eff8ff, #f7fcfe);
     208    background-image:    -moz-linear-gradient(bottom, #eff8ff, #f7fcfe);
     209    background-image:      -o-linear-gradient(bottom, #eff8ff, #f7fcfe);
     210    background-image: linear-gradient(to top, #eff8ff, #f7fcfe);
    212211}
    213212
     
    215214.postbox h3,
    216215.stuffbox h3 {
    217     border-bottom-color: #D1E5EE;
     216    border-bottom-color: #d1e5ee;
    218217    text-shadow: #fff 0 1px 0;
    219218    -webkit-box-shadow: 0 1px 0 #fff;
     
    224223.form-wrap label {
    225224    color: #222;
    226     text-shadow: #fff 0 1px 0;
     225    text-shadow: 0 1px 0 #fff;
    227226}
    228227
     
    393392.submit input,
    394393.button-secondary {
    395     background: #f2f2f2 url(../images/white-grad.png) repeat-x scroll left top;
    396     text-shadow: rgba(255,255,255,1) 0 1px 0;
     394    text-shadow: 0 1px 0 #fff;
     395    background: #f2f2f2;
     396    background-image: -webkit-gradient(linear, left bottom, left top, from(#ededed), to(#fff));
     397    background-image: -webkit-linear-gradient(bottom, #ededed, #fff);
     398    background-image:    -moz-linear-gradient(bottom, #ededed, #fff);
     399    background-image:      -o-linear-gradient(bottom, #ededed, #fff);
     400    background-image: linear-gradient(to top, #ededed, #fff);
    397401}
    398402
     
    400404.submit input:active,
    401405.button-secondary:active {
    402     background: #eee url(../images/white-grad-active.png) repeat-x scroll left top;
     406    background: #eee;
     407    background-image: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
     408    background-image: -webkit-linear-gradient(top, #ededed, #fff);
     409    background-image:    -moz-linear-gradient(top, #ededed, #fff);
     410    background-image:      -o-linear-gradient(top, #ededed, #fff);
     411    background-image: linear-gradient(to bottom, #ededed, #fff);
    403412}
    404413
     
    409418    font-weight: bold;
    410419    color: #fff;
    411     background: #21759B url(../images/button-grad.png) repeat-x scroll left top;
    412     text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
     420    text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
     421    background: #21759b;
     422    background-image: -webkit-gradient(linear, left bottom, left top, from(#227199), to(#298cba));
     423    background-image: -webkit-linear-gradient(bottom, #227199, #298cba);
     424    background-image:    -moz-linear-gradient(bottom, #227199, #298cba);
     425    background-image:      -o-linear-gradient(bottom, #227199, #298cba);
     426    background-image: linear-gradient(to top, #227199, #298cba);
    413427}
    414428
     
    416430button.button-primary:active,
    417431a.button-primary:active {
    418     background: #21759b url(../images/button-grad-active.png) repeat-x scroll left top;
    419432    color: #eaf2fa;
     433    background: #298cba;
     434    background-image: -webkit-gradient(linear, left top, left bottom, from(#227199), to(#298cba));
     435    background-image: -webkit-linear-gradient(top, #227199, #298cba);
     436    background-image:    -moz-linear-gradient(top, #227199, #298cba);
     437    background-image:      -o-linear-gradient(top, #227199, #298cba);
     438    background-image: linear-gradient(to bottom, #227199, #298cba);
    420439}
    421440
     
    442461.button-primary[disabled],
    443462.button-primary:disabled {
    444     color: #9FD0D5 !important;
    445     background: #298CBA !important;
     463    color: #9fd0d5 !important;
     464    background: #298cba !important;
    446465}
    447466
     
    634653}
    635654
    636 .quicktags-toolbar input {
    637     background: #fff;
    638     background-image: -ms-linear-gradient(bottom, #e5f0f8, #fff); /* IE10 */
    639     background-image: -moz-linear-gradient(bottom, #e5f0f8, #fff); /* Firefox */
    640     background-image: -o-linear-gradient(bottom, #e5f0f8, #fff); /* Opera */
    641     background-image: -webkit-gradient(linear, left bottom, left top, from(#e5f0f8), to(#fff)); /* old Webkit    */
    642     background-image: -webkit-linear-gradient(bottom, #e5f0f8, #fff) !important; /* new Webkit */
    643     background-image: linear-gradient(bottom, #e5f0f8, #fff); /* proposed W3C Markup */
    644 }
    645 
    646655#editable-post-name {
    647656    background-color: #fffbcc;
     
    869878
    870879/* editors */
    871 #quicktags {
    872     border-color: #cfdfe9;
    873     background-color: #cfdfe9;
    874     background-image: url("../images/ed-bg-vs.gif?ver=20101102");
    875 }
    876 
    877 .quicktags-toolbar input {
    878     border-color: #b2c4c8;
    879 }
    880 
    881 .quicktags-toolbar input:hover {
    882     border-color: #d0dfe9;
    883     background: #f0f8fe;
    884 }
    885 
    886880#poststuff .wp-editor-wrap .wp_themeSkin .mceStatusbar {
    887881    border-color: #d0dfe9;
     
    911905}
    912906
     907.wp-editor-wrap .quicktags-toolbar input {
     908    background: #fff;
     909    background-image: -webkit-gradient(linear, left bottom, left top, from(#e5f0f8), to(#fff));
     910    background-image: -webkit-linear-gradient(bottom, #e5f0f8, #fff);
     911    background-image:    -moz-linear-gradient(bottom, #e5f0f8, #fff);
     912    background-image:      -o-linear-gradient(bottom, #e5f0f8, #fff);
     913    background-image: linear-gradient(to top, #e5f0f8, #fff);
     914}
     915
    913916/* Containers */
    914917.wp-editor-wrap .wp_themeSkin table.mceLayout {
     
    933936
    934937/* Button */
    935 .wp-editor-wrap .wp_themeSkin .mceButton {
    936     border-color: #B0C8D7;
    937     background-color: #cfdfe9; /* Fallback */
    938     background-image: -ms-linear-gradient(bottom, #cfdfe9, #fff); /* IE10 */
    939     background-image: -moz-linear-gradient(bottom, #cfdfe9, #fff); /* Firefox */
    940     background-image: -o-linear-gradient(bottom, #cfdfe9, #fff); /* Opera */
    941     background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#fff)); /* old Webkit   */
    942     background-image: -webkit-linear-gradient(bottom, #cfdfe9, #fff) !important; /* new Webkit */
    943     background-image: linear-gradient(bottom, #cfdfe9, #fff); /* proposed W3C Markup */
     938.wp-editor-wrap .wp_themeSkin .mceButton,
     939.wp-editor-wrap .wp_themeSkin .mceListBox .mceText,
     940.wp-editor-wrap .wp_themeSkin .mceListBox .mceOpen {
     941    border-color: #b0c8d7;
     942    background: #cfdfe9;
     943    background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#fff));
     944    background-image: -webkit-linear-gradient(bottom, #cfdfe9, #fff);
     945    background-image:    -moz-linear-gradient(bottom, #cfdfe9, #fff);
     946    background-image:      -o-linear-gradient(bottom, #cfdfe9, #fff);
     947    background-image: linear-gradient(to top, #cfdfe9, #fff);
    944948}
    945949
    946950.wp-editor-wrap .wp_themeSkin a.mceButtonEnabled:hover {
    947     border-color: #5589AA !important;
    948     background-color: #c9c9c9; /* Fallback */
    949     background-image: -ms-linear-gradient(bottom, #bdccd5, #fff); /* IE10 */
    950     background-image: -moz-linear-gradient(bottom, #bdccd5, #fff); /* Firefox */
    951     background-image: -o-linear-gradient(bottom, #bdccd5, #fff); /* Opera */
    952     background-image: -webkit-gradient(linear, left bottom, left top, from(#bdccd5), to(#fff)); /* old Webkit    */
    953     background-image: -webkit-linear-gradient(bottom, #bdccd5, #fff) !important; /* new Webkit */
    954     background-image: linear-gradient(bottom, #bdccd5, #fff); /* proposed W3C Markup */
     951    border-color: #5589aa;
     952    background: #c9c9c9;
     953    background-image: -webkit-gradient(linear, left bottom, left top, from(#bdccd5), to(#000));
     954    background-image: -webkit-linear-gradient(bottom, #bdccd5, #fff);
     955    background-image:    -moz-linear-gradient(bottom, #bdccd5, #fff);
     956    background-image:      -o-linear-gradient(bottom, #bdccd5, #fff);
     957    background-image: linear-gradient(to top, #bdccd5, #fff);
    955958}
    956959
     
    961964.wp-editor-wrap .wp_themeSkin a.mceButtonActive:active,
    962965.wp-editor-wrap .wp_themeSkin a.mceButtonActive:hover {
    963     background: #B0C8D7 !important;
    964     background-image: -ms-linear-gradient(bottom, #fff, #cfdfe9); /* IE10 */
    965     background-image: -moz-linear-gradient(bottom, #fff, #cfdfe9); /* Firefox */
    966     background-image: -o-linear-gradient(bottom, #fff, #cfdfe9); /* Opera */
    967     background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#cfdfe9)); /* old Webkit    */
    968     background-image: -webkit-linear-gradient(bottom, #fff, #cfdfe9) !important; /* new Webkit */
    969     background-image: linear-gradient(bottom, #fff, #cfdfe9); /* proposed W3C Markup */
    970     border-color: #5589AA !important;
     966    background: #b0c8d7;
     967    border-color: #5589aa;
     968    background-image: -webkit-gradient(linear, left top, left bottom, from(#cfdfe9), to(#fff));
     969    background-image: -webkit-linear-gradient(top, #cfdfe9, #fff);
     970    background-image:    -moz-linear-gradient(top, #cfdfe9, #fff);
     971    background-image:      -o-linear-gradient(top, #cfdfe9, #fff);
     972    background-image: linear-gradient(to bottom, #cfdfe9, #fff);
    971973}
    972974
    973975.wp-editor-wrap .wp_themeSkin .mceButtonDisabled {
    974     border-color: #B0C8D7 !important;
    975 }
    976 
    977 /* ListBox */
    978 .wp-editor-wrap .wp_themeSkin .mceListBox .mceText,
    979 .wp-editor-wrap .wp_themeSkin .mceListBox .mceOpen  {
    980     border-color: #B0C8D7;
    981     background-color: #cfdfe9; /* Fallback */
    982     background-image: -ms-linear-gradient(bottom, #cfdfe9, #fff); /* IE10 */
    983     background-image: -moz-linear-gradient(bottom, #cfdfe9, #fff); /* Firefox */
    984     background-image: -o-linear-gradient(bottom, #cfdfe9, #fff); /* Opera */
    985     background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#fff)); /* old Webkit   */
    986     background-image: -webkit-linear-gradient(bottom, #cfdfe9, #fff) !important; /* new Webkit */
    987     background-image: linear-gradient(bottom, #cfdfe9, #fff); /* proposed W3C Markup */
     976    border-color: #b0c8d7 !important;
    988977}
    989978
    990979.wp-editor-wrap .wp_themeSkin .mceListBox .mceOpen {
    991     border-left: 0px !important;
     980    border-left: 0 !important;
    992981}
    993982
     
    998987.wp-editor-wrap .wp_themeSkin .mceListBoxSelected .mceText,
    999988.wp-editor-wrap .wp_themeSkin table.mceListBoxEnabled:active .mceText {
    1000     background: #B0C8D7;
    1001     border-color: #5589AA !important;
    1002 }
    1003 
    1004 /* List Box Hover */
     989    background: #b0c8d7;
     990    border-color: #5589aa;
     991}
     992
    1005993.wp-editor-wrap .wp_themeSkin table.mceListBoxEnabled:hover .mceText,
    1006994.wp-editor-wrap .wp_themeSkin .mceListBoxHover .mceText,
    1007995.wp-editor-wrap .wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
    1008996.wp-editor-wrap .wp_themeSkin .mceListBoxHover .mceOpen {
    1009     border-color: #5589AA !important;
    1010     background-color: #c9c9c9; /* Fallback */
    1011     background-image: -ms-linear-gradient(bottom, #cfdfe9, #fff); /* IE10 */
    1012     background-image: -moz-linear-gradient(bottom, #cfdfe9, #fff); /* Firefox */
    1013     background-image: -o-linear-gradient(bottom, #cfdfe9, #fff); /* Opera */
    1014     background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#fff)); /* old Webkit   */
    1015     background-image: -webkit-linear-gradient(bottom, #cfdfe9, #fff) !important; /* new Webkit */
    1016     background-image: linear-gradient(bottom, #cfdfe9, #fff); /* proposed W3C Markup */
    1017 }
    1018 
    1019 .wp-editor-wrap .wp_themeSkin select.mceListBox {
    1020     border-color: #B2B2B2;
    1021     background-color: #fff;
     997    border-color: #5589aa;
     998    background: #c9c9c9;
     999    background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#fff));
     1000    background-image: -webkit-linear-gradient(bottom, #cfdfe9, #fff);
     1001    background-image:    -moz-linear-gradient(bottom, #cfdfe9, #fff);
     1002    background-image:      -o-linear-gradient(bottom, #cfdfe9, #fff);
     1003    background-image: linear-gradient(to top, #cfdfe9, #fff);
    10221004}
    10231005
     
    10251007.wp-editor-wrap .wp_themeSkin .mceSplitButton a.mceAction,
    10261008.wp-editor-wrap .wp_themeSkin .mceSplitButton a.mceOpen {
    1027     border-color: #B0C8D7;
     1009    border-color: #b0c8d7;
    10281010}
    10291011
     
    10321014.wp-editor-wrap .wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,
    10331015.wp-editor-wrap .wp_themeSkin .mceSplitButton a.mceAction:hover {
    1034     border-color: #5589AA !important;
     1016    border-color: #5589aa;
    10351017}
    10361018
    10371019.wp-editor-wrap .wp_themeSkin table.mceSplitButton td {
    1038     background-color: #cfdfe9; /* Fallback */
    1039     background-image: -ms-linear-gradient(bottom, #cfdfe9, #fff); /* IE10 */
    1040     background-image: -moz-linear-gradient(bottom, #cfdfe9, #fff); /* Firefox */
    1041     background-image: -o-linear-gradient(bottom, #cfdfe9, #fff); /* Opera */
    1042     background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#fff)); /* old Webkit   */
    1043     background-image: -webkit-linear-gradient(bottom, #cfdfe9, #fff) !important; /* new Webkit */
    1044     background-image: linear-gradient(bottom, #cfdfe9, #fff); /* proposed W3C Markup */
     1020    background: #cfdfe9;
     1021    background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#fff));
     1022    background-image: -webkit-linear-gradient(bottom, #cfdfe9, #fff);
     1023    background-image:    -moz-linear-gradient(bottom, #cfdfe9, #fff);
     1024    background-image:      -o-linear-gradient(bottom, #cfdfe9, #fff);
     1025    background-image: linear-gradient(to top, #cfdfe9, #fff);
    10451026}
    10461027
    10471028.wp-editor-wrap .wp_themeSkin table.mceSplitButton:hover td {
    1048     background-image: -ms-linear-gradient(bottom, #cfdfe9, #fff); /* IE10 */
    1049     background-image: -moz-linear-gradient(bottom, #cfdfe9, #fff); /* Firefox */
    1050     background-image: -o-linear-gradient(bottom, #cfdfe9, #fff); /* Opera */
    1051     background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#fff)); /* old Webkit   */
    1052     background-image: -webkit-linear-gradient(bottom, #cfdfe9, #fff) !important; /* new Webkit */
    1053     background-image: linear-gradient(bottom, #cfdfe9, #fff); /* proposed W3C Markup */
     1029    background: #c9c9c9;
     1030    background-image: -webkit-gradient(linear, left bottom, left top, from(#bdccd5), to(#000));
     1031    background-image: -webkit-linear-gradient(bottom, #bdccd5, #fff);
     1032    background-image:    -moz-linear-gradient(bottom, #bdccd5, #fff);
     1033    background-image:      -o-linear-gradient(bottom, #bdccd5, #fff);
     1034    background-image: linear-gradient(to top, #bdccd5, #fff);
    10541035}
    10551036
    10561037.wp-editor-wrap .wp_themeSkin .mceSplitButtonActive {
    1057     background-color: #B0C8D7;
     1038    background-color: #b0c8d7;
    10581039}
    10591040
     
    10611042.wp-editor-wrap .wp_themeSkin div.mceColorSplitMenu table {
    10621043    background-color: #ebebeb;
    1063     border-color: #B2B2B2;
     1044    border-color: #b2b2b2;
    10641045}
    10651046
    10661047.wp-editor-wrap .wp_themeSkin .mceColorSplitMenu a {
    1067     border-color: #B2B2B2;
     1048    border-color: #b2b2b2;
    10681049}
    10691050
     
    10981079    background-color: #f5f5f5;
    10991080}
     1081
    11001082.wp-editor-wrap .wp_themeSkin td.mceMenuItemSeparator {
    11011083    background-color: #aaa;
    11021084}
     1085
    11031086.wp-editor-wrap .wp_themeSkin .mceMenuItemTitle a {
    11041087    background-color: #ccc;
    11051088    border-bottom-color: #aaa;
    11061089}
     1090
    11071091.wp-editor-wrap .wp_themeSkin .mceMenuItemTitle span.mceText {
    11081092    color: #000;
    11091093}
     1094
    11101095.wp-editor-wrap .wp_themeSkin .mceMenuItemDisabled .mceText {
    11111096    color: #888;
    1112 }
    1113 
    1114 .wp-editor-wrap .wp_themeSkin tr.mceFirst td.mceToolbar {
    1115     background: #cfdfe9 url("../images/ed-bg-vs.gif?ver=20101102") repeat-x scroll left top;
    1116     border-color: #cfdfe9;
    11171097}
    11181098
     
    11861166}
    11871167
    1188 .wp-editor-wrap.quicktags-toolbar input {
     1168.wp-editor-wrap .quicktags-toolbar input {
    11891169    color: #464646;
    1190     border-color: #d1e5ee;
    1191     background-color: #eff8ff;
    1192     background-image: -ms-linear-gradient(bottom, #eff8ff, #fff);
    1193     background-image: -moz-linear-gradient(bottom, #eff8ff, #fff);
    1194     background-image: -o-linear-gradient(bottom, #eff8ff, #fff);
    1195     background-image: -webkit-linear-gradient(bottom, #eff8ff, #fff);
    1196     background-image: linear-gradient(bottom, #eff8ff, #fff);
    1197 }
     1170    border-color: #b1c6cf;
     1171    background: #fff;
     1172    background-image: -webkit-gradient(linear, left bottom, left top, from(#e5f0f8), to(#fff));
     1173    background-image: -webkit-linear-gradient(bottom, #e5f0f8, #fff);
     1174    background-image:    -moz-linear-gradient(bottom, #e5f0f8, #fff);
     1175    background-image:      -o-linear-gradient(bottom, #e5f0f8, #fff);
     1176    background-image: linear-gradient(to top, #e5f0f8, #fff);
     1177}
     1178
     1179.wp-editor-wrap .quicktags-toolbar input:hover {
     1180    border-color: #5589aa;
     1181    background: #e0f1ff;
     1182}
     1183
    11981184.wp-editor-wrap .quicktags-toolbar,
    1199 .wp-editor-wrap.wp_themeSkin tr.mceFirst td.mceToolbar {
     1185.wp-editor-wrap .wp_themeSkin tr.mceFirst td.mceToolbar {
    12001186    border-bottom: 1px solid #ccc;
    1201     background-color: #eff8ff; /* Fallback */
    1202     background-image: -ms-linear-gradient(bottom, #cfdfe9, #eff8ff); /* IE10 */
    1203     background-image: -moz-linear-gradient(bottom, #cfdfe9, #eff8ff); /* Firefox */
    1204     background-image: -o-linear-gradient(bottom, #cfdfe9, #eff8ff); /* Opera */
    1205     background-image: -webkit-linear-gradient(bottom, #cfdfe9, #eff8ff); /* new Webkit */
    1206     background-image: linear-gradient(bottom, #cfdfe9, #eff8ff); /* proposed W3C Markup */
    1207 }
    1208 .wp-editor-wrap .quicktags-toolbar input:hover {
    1209     border-color: #aaa;
    1210     background: #ddd;
    1211 }
    1212 
    1213 .wp-editor-wrap.wp_themeSkin .mceButton,
    1214 .wp-editor-wrap.wp_themeSkin .mceListBox .mceText,
    1215 .wp-editor-wrap.wp_themeSkin .mceListBox .mceOpen {
    1216     border-color: #ccc;
    1217     background-color: #eff8ff; /* Fallback */
    1218     background-image: -ms-linear-gradient(bottom, #eff8ff, #fff); /* IE10 */
    1219     background-image: -moz-linear-gradient(bottom, #eff8ff, #fff); /* Firefox */
    1220     background-image: -o-linear-gradient(bottom, #eff8ff, #fff); /* Opera */
    1221     background-image: -webkit-gradient(linear, left bottom, left top, from(#eff8ff), to(#fff)); /* old Webkit */
    1222     background-image: -webkit-linear-gradient(bottom, #eff8ff, #fff); /* new Webkit */
    1223     background-image: linear-gradient(bottom, #eff8ff, #fff); /* proposed W3C Markup */
    1224 }
    1225 
    1226 .wp-editor-wrap.wp_themeSkin a.mceButtonEnabled:hover {
    1227     border-color: #a0a0a0;
    1228     background: #ddd; /* Fallback */
    1229     background-image: -ms-linear-gradient(bottom, #cfdfe9, #fff); /* IE10 */
    1230     background-image: -moz-linear-gradient(bottom, #cfdfe9, #fff); /* Firefox */
    1231     background-image: -o-linear-gradient(bottom, #cfdfe9, #fff); /* Opera */
    1232     background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#fff)); /* old Webkit */
    1233     background-image: -webkit-linear-gradient(bottom, #cfdfe9, #fff); /* new Webkit */
    1234     background-image: linear-gradient(bottom, #cfdfe9, #fff); /* proposed W3C Markup */
     1187    background: #eff8ff;
     1188    background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#eff8ff));
     1189    background-image: -webkit-linear-gradient(bottom, #cfdfe9, #eff8ff);
     1190    background-image:    -moz-linear-gradient(bottom, #cfdfe9, #eff8ff);
     1191    background-image:      -o-linear-gradient(bottom, #cfdfe9, #eff8ff);
     1192    background-image: linear-gradient(to top, #cfdfe9, #eff8ff);
    12351193}
    12361194
     
    13251283#adminmenu .wp-menu-arrow,
    13261284#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
    1327     background-color: #5589AA; /* Fallback */
    1328     background-image: -ms-linear-gradient(bottom, #5589AA, #619bbb); /* IE10 */
    1329     background-image: -moz-linear-gradient(bottom, #5589AA, #619bbb); /* Firefox */
    1330     background-image: -o-linear-gradient(bottom, #5589AA, #619bbb); /* Opera */
    1331     background-image: -webkit-gradient(linear, left bottom, left top, from(#5589AA), to(#619bbb)); /* old Webkit */
    1332     background-image: -webkit-linear-gradient(bottom, #5589AA, #619bbb); /* new Webkit */
    1333     background-image: linear-gradient(bottom, #5589AA, #619bbb); /* proposed W3C Markup */
     1285    background: #5589aa;
     1286    background-image: -webkit-gradient(linear, left bottom, left top, from(#5589aa), to(#619bbb));
     1287    background-image: -webkit-linear-gradient(bottom, #5589aa, #619bbb);
     1288    background-image:    -moz-linear-gradient(bottom, #5589aa, #619bbb);
     1289    background-image:      -o-linear-gradient(bottom, #5589aa, #619bbb);
     1290    background-image: linear-gradient(to top, #5589aa, #619bbb);
    13341291}
    13351292
    13361293#adminmenu .wp-menu-arrow div {
    1337     background-color: #5589AA; /* Fallback */
    1338     background-image: -ms-linear-gradient(right bottom, #5589AA, #619bbb); /* IE10 */
    1339     background-image: -moz-linear-gradient(right bottom, #5589AA, #619bbb); /* Firefox */
    1340     background-image: -o-linear-gradient(right bottom, #5589AA, #619bbb); /* Opera */
    1341     background-image: -webkit-gradient(linear, right bottom, left top, from(#5589AA), to(#619bbb)); /* old Webkit */
    1342     background-image: -webkit-linear-gradient(right bottom, #5589AA, #619bbb); /* new Webkit */
    1343     background-image: linear-gradient(right bottom, #5589AA, #619bbb); /* proposed W3C Markup */
     1294    background: #5589aa;
     1295    background-image: -webkit-gradient(linear, right bottom, left top, from(#5589aa), to(#619bbb));
     1296    background-image: -webkit-linear-gradient(bottom right, #5589aa, #619bbb);
     1297    background-image:    -moz-linear-gradient(bottom right, #5589aa, #619bbb);
     1298    background-image:      -o-linear-gradient(bottom right, #5589aa, #619bbb);
     1299    background-image: linear-gradient(to top left, #5589aa, #619bbb);
     1300
    13441301}
    13451302
     
    14211378#collapse-button {
    14221379    border-color: #d0dfe9;
    1423     background-color: #eff8ff; /* Fallback */
    1424     background-image: -ms-linear-gradient(bottom, #eff8ff, #fff); /* IE10 */
    1425     background-image: -moz-linear-gradient(bottom, #eff8ff, #fff); /* Firefox */
    1426     background-image: -o-linear-gradient(bottom, #eff8ff, #fff); /* Opera */
    1427     background-image: -webkit-gradient(linear, left bottom, left top, from(#eff8ff), to(#fff)); /* old Webkit */
    1428     background-image: -webkit-linear-gradient(bottom, #eff8ff, #fff); /* new Webkit */
    1429     background-image: linear-gradient(bottom, #eff8ff, #fff); /* proposed W3C Markup */
    1430 }
     1380    background: #eff8ff; /* Fallback */
     1381    background-image: -webkit-gradient(linear, left bottom, left top, from(#eff8ff), to(#fff));
     1382    background-image: -webkit-linear-gradient(bottom, #eff8ff, #fff);
     1383    background-image:    -moz-linear-gradient(bottom, #eff8ff, #fff);
     1384    background-image:      -o-linear-gradient(bottom, #eff8ff, #fff);
     1385    background-image: linear-gradient(to top, #eff8ff, #fff);
     1386}
     1387
    14311388#collapse-menu:hover #collapse-button {
    14321389    border-color: #A0C3D5;
    14331390}
     1391
    14341392#collapse-button div {
    14351393    background: transparent url(../images/arrows-vs.png) no-repeat 0 -72px;
    1436 }
     1394
     1395}
     1396
    14371397.folded #collapse-button div {
    14381398    background-position: 0 -108px;
     
    14481408    #adminmenu li.wp-has-current-submenu,
    14491409    #adminmenu li.current.menu-top {
    1450         background-color: #5589AA; /* Fallback */
    1451         background-image: -ms-linear-gradient(bottom, #5589AA, #619bbb); /* IE10 */
    1452         background-image: -moz-linear-gradient(bottom, #5589AA, #619bbb); /* Firefox */
    1453         background-image: -o-linear-gradient(bottom, #5589AA, #619bbb); /* Opera */
    1454         background-image: -webkit-gradient(linear, left bottom, left top, from(#5589AA), to(#619bbb)); /* old Webkit */
    1455         background-image: -webkit-linear-gradient(bottom, #5589AA, #619bbb); /* new Webkit */
    1456         background-image: linear-gradient(bottom, #5589AA, #619bbb); /* proposed W3C Markup */
     1410        background: #5589aa;
     1411        background-image: -webkit-gradient(linear, left bottom, left top, from(#5589aa), to(#619bbb));
     1412        background-image: -webkit-linear-gradient(bottom, #5589aa, #619bbb);
     1413        background-image:    -moz-linear-gradient(bottom, #5589aa, #619bbb);
     1414        background-image:      -o-linear-gradient(bottom, #5589aa, #619bbb);
     1415        background-image: linear-gradient(to top, #5589aa, #619bbb);
    14571416    }
    14581417
     
    18781837#screen-options-link-wrap,
    18791838#contextual-help-link-wrap {
    1880     background-color: #eff8ff; /* Fallback */
    18811839    border-right: 1px solid #D1E5EE;
    18821840    border-left: 1px solid #D1E5EE;
    18831841    border-bottom: 1px solid #D1E5EE;
    1884     background-image: -ms-linear-gradient(bottom, #eff8ff, #eff8ff); /* IE10 */
    1885     background-image: -moz-linear-gradient(bottom, #def1ff, #eff8ff); /* Firefox */
    1886     background-image: -o-linear-gradient(bottom, #def1ff, #eff8ff); /* Opera */
    1887     background-image: -webkit-gradient(linear, left bottom, left top, from(#def1ff), to(#eff8ff)); /* old Webkit */
    1888     background-image: -webkit-linear-gradient(bottom, #def1ff, #eff8ff); /* new Webkit */
    1889     background-image: linear-gradient(bottom, #def1ff, #eff8ff); /* proposed W3C Markup */
     1842    background: #eff8ff;
     1843    background-image: -webkit-gradient(linear, left bottom, left top, from(#def1ff), to(#eff8ff));
     1844    background-image: -webkit-linear-gradient(bottom, #def1ff, #eff8ff);
     1845    background-image:    -moz-linear-gradient(bottom, #def1ff, #eff8ff);
     1846    background-image:      -o-linear-gradient(bottom, #def1ff, #eff8ff);
     1847    background-image: linear-gradient(to top, #def1ff, #eff8ff);
    18901848}
    18911849
     
    19811939.tablenav .tablenav-pages a {
    19821940    border-color: #d1e5ee;
    1983     background: #eee url('../images/menu-bits-vs.gif?ver=20101102') repeat-x scroll left -379px;
     1941    background: #eee;
     1942    -moz-box-shadow:    inset 0 1px 0 #fff;
     1943    -webkit-box-shadow: inset 0 1px 0 #fff;
     1944    box-shadow:         inset 0 1px 0 #fff;
    19841945}
    19851946
     
    20932054
    20942055div.widgets-sortables,
    2095 #widgets-left .inactive {
    2096     background-color: #f7fcfe;
    2097     border-color: #d0dfe9;
    2098 }
    2099 
     2056#widgets-left .inactive,
    21002057#available-widgets .widget-holder {
    21012058    background-color: #f7fcfe;
     
    21092066.sidebar-name {
    21102067    color: #464646;
    2111     background-color: #f7fcfe; /* Fallback */
    2112     background-image: -ms-linear-gradient(top, #ECF8FE, #f7fcfe); /* IE10 */
    2113     background-image: -moz-linear-gradient(top, #ECF8FE, #f7fcfe); /* Firefox */
    2114     background-image: -o-linear-gradient(top, #ECF8FE, #f7fcfe); /* Opera */
    2115     background-image: -webkit-gradient(linear, left top, left bottom, from(#ECF8FE), to(#f7fcfe)); /* old Webkit */
    2116     background-image: -webkit-linear-gradient(top, #ECF8FE, #f7fcfe); /* new Webkit */
    2117     background-image: linear-gradient(top, #ECF8FE, #f7fcfe); /* proposed W3C Markup */
    21182068    text-shadow: #fff 0 1px 0;
    21192069    border-color: #d0dfe9;
     
    21832133
    21842134#post-body {
    2185     background: #ffffff;
     2135    background: #fff;
    21862136    border-top-color: #fff;
    21872137    border-bottom-color: #d0dfe9;
     
    23302280.about-wrap h1 {
    23312281    color: #333;
    2332     text-shadow: 1px 1px 1px white;
     2282    text-shadow: 1px 1px 1px #fff;
    23332283}
    23342284
     
    23452295    color: #21759B;
    23462296}
     2297
    23472298.about-wrap h2 .nav-tab:hover {
    23482299    color: #d54e21;
    2349 }
     2300
     2301}
     2302
    23502303.about-wrap h2 .nav-tab-active,
    23512304.about-wrap h2 .nav-tab-active:hover {
    23522305    color: #333;
    23532306}
     2307
    23542308.about-wrap h2 .nav-tab-active {
    2355     text-shadow: 1px 1px 1px white;
     2309    text-shadow: 1px 1px 1px #fff;
    23562310    color: #464646;
    23572311}
     
    23592313.about-wrap h3 {
    23602314    color: #333;
    2361     text-shadow: 1px 1px 1px white;
     2315    text-shadow: 1px 1px 1px #fff;
    23622316}
    23632317
     
    23682322.about-wrap .feature-section img {
    23692323    background: #fff;
    2370     border: 1px #ccc solid;
     2324    border: 1px solid #ccc;
    23712325
    23722326    -webkit-box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.3 );
     
    23872341
    23882342.about-wrap h4.wp-people-group {
    2389     text-shadow: 1px 1px 1px white;
     2343    text-shadow: 1px 1px 1px #fff;
    23902344}
    23912345
     
    23942348    box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );
    23952349}
     2350
    23962351.about-wrap li.wp-person .title {
    23972352    color: #464646;
    2398     text-shadow: 1px 1px 1px white;
     2353    text-shadow: 1px 1px 1px #fff;
    23992354}
    24002355
     
    24842439}
    24852440
    2486 .rtl .tablenav .tablenav-pages a {
    2487     border-color: #d1e5ee;
    2488     background: #eee url('../images/menu-bits-rtl-vs.gif?ver=20100610') repeat-x scroll right -379px;
    2489 }
    2490 
    24912441.rtl #post-body .misc-pub-section {
    24922442    border-right-color: transparent;
     
    24972447    background: transparent url(../images/arrows-vs.png) no-repeat 5px 9px;
    24982448}
     2449
    24992450.rtl .sidebar-name:hover .sidebar-name-arrow {
    25002451    background: transparent url(../images/arrows-dark-vs.png) no-repeat 5px 9px;
  • trunk/wp-admin/css/colors-fresh.dev.css

    r21439 r21459  
    194194#nav-menu-footer,
    195195.menu-item-handle {
    196     background-color: #f1f1f1; /* Fallback */
    197     background-image: -ms-linear-gradient(top, #f9f9f9, #ececec); /* IE10 */
    198     background-image: -moz-linear-gradient(top, #f9f9f9, #ececec); /* Firefox */
    199     background-image: -o-linear-gradient(top, #f9f9f9, #ececec); /* Opera */
    200     background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec)); /* old Webkit */
    201     background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec); /* new Webkit */
    202     background-image: linear-gradient(top, #f9f9f9, #ececec); /* proposed W3C Markup */
     196    background: #f1f1f1;
     197    background-image: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f9f9f9));
     198    background-image: -webkit-linear-gradient(bottom, #ececec, #f9f9f9);
     199    background-image:    -moz-linear-gradient(bottom, #ececec, #f9f9f9);
     200    background-image:      -o-linear-gradient(bottom, #ececec, #f9f9f9);
     201    background-image: linear-gradient(to top, #ececec, #f9f9f9);
    203202}
    204203
     
    384383.submit input,
    385384.button-secondary {
    386     background: #f2f2f2 url(../images/white-grad.png) repeat-x scroll left top;
    387     text-shadow: rgba(255,255,255,1) 0 1px 0;
     385    text-shadow: 0 1px 0 #fff;
     386    background: #f2f2f2;
     387    background-image: -webkit-gradient(linear, left bottom, left top, from(#ededed), to(#fff));
     388    background-image: -webkit-linear-gradient(bottom, #ededed, #fff);
     389    background-image:    -moz-linear-gradient(bottom, #ededed, #fff);
     390    background-image:      -o-linear-gradient(bottom, #ededed, #fff);
     391    background-image: linear-gradient(to top, #ededed, #fff);
    388392}
    389393
     
    391395.submit input:active,
    392396.button-secondary:active {
    393     background: #eee url(../images/white-grad-active.png) repeat-x scroll left top;
     397    background: #eee;
     398    background-image: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
     399    background-image: -webkit-linear-gradient(top, #ededed, #fff);
     400    background-image:    -moz-linear-gradient(top, #ededed, #fff);
     401    background-image:      -o-linear-gradient(top, #ededed, #fff);
     402    background-image: linear-gradient(to bottom, #ededed, #fff);
    394403}
    395404
     
    400409    font-weight: bold;
    401410    color: #fff;
    402     background: #21759B url(../images/button-grad.png) repeat-x scroll left top;
    403     text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
     411    text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
     412    background: #21759b;
     413    background-image: -webkit-gradient(linear, left bottom, left top, from(#227199), to(#298cba));
     414    background-image: -webkit-linear-gradient(bottom, #227199, #298cba);
     415    background-image:    -moz-linear-gradient(bottom, #227199, #298cba);
     416    background-image:      -o-linear-gradient(bottom, #227199, #298cba);
     417    background-image: linear-gradient(to top, #227199, #298cba);
    404418}
    405419
     
    407421button.button-primary:active,
    408422a.button-primary:active {
    409     background: #21759b url(../images/button-grad-active.png) repeat-x scroll left top;
    410423    color: #eaf2fa;
     424    background: #298cba;
     425    background-image: -webkit-gradient(linear, left top, left bottom, from(#227199), to(#298cba));
     426    background-image: -webkit-linear-gradient(top, #227199, #298cba);
     427    background-image:    -moz-linear-gradient(top, #227199, #298cba);
     428    background-image:      -o-linear-gradient(top, #227199, #298cba);
     429    background-image: linear-gradient(to bottom, #227199, #298cba);
    411430}
    412431
     
    433452.button-primary[disabled],
    434453.button-primary:disabled {
    435     color: #9FD0D5 !important;
    436     background: #298CBA !important;
     454    color: #9fd0d5 !important;
     455    background: #298cba !important;
    437456}
    438457
     
    742761.postbox,
    743762.menu-item-settings {
    744     background-color: #f5f5f5; /* Fallback */
    745     background-image: -ms-linear-gradient(top, #f9f9f9, #f5f5f5); /* IE10 */
    746     background-image: -moz-linear-gradient(top, #f9f9f9, #f5f5f5); /* Firefox */
    747     background-image: -o-linear-gradient(top, #f9f9f9, #f5f5f5); /* Opera */
    748     background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#f5f5f5)); /* old Webkit */
    749     background-image: -webkit-linear-gradient(top, #f9f9f9, #f5f5f5); /* new Webkit */
    750     background-image: linear-gradient(top, #f9f9f9, #f5f5f5); /* proposed W3C Markup */
     763    background: #f5f5f5;
     764    background-image: -webkit-gradient(linear, left bottom, left top, from(#f5f5f5), to(#f9f9f9));
     765    background-image: -webkit-linear-gradient(bottom, #f5f5f5, #f9f9f9);
     766    background-image:    -moz-linear-gradient(bottom, #f5f5f5, #f9f9f9);
     767    background-image:      -o-linear-gradient(bottom, #f5f5f5, #f9f9f9);
     768    background-image: linear-gradient(to top, #f5f5f5, #f9f9f9);
    751769}
    752770
     
    766784.curtime #timestamp {
    767785    background-image: url(../images/date-button.gif);
    768 }
    769 
    770 #quicktags #ed_link {
    771     color: #00f;
    772786}
    773787
     
    826840#screen-options-link-wrap,
    827841#contextual-help-link-wrap {
    828     background-color: #e3e3e3; /* Fallback */
    829842    border-right: 1px solid #ccc;
    830843    border-left: 1px solid #ccc;
    831844    border-bottom: 1px solid #ccc;
    832     background-image: -ms-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* IE10 */
    833     background-image: -moz-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Firefox */
    834     background-image: -o-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Opera */
    835     background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#f1f1f1)); /* old Webkit */
    836     background-image: -webkit-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* new Webkit */
    837     background-image: linear-gradient(bottom, #dfdfdf, #f1f1f1); /* proposed W3C Markup */
     845    background: #e3e3e3;
     846    background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#f1f1f1));
     847    background-image: -webkit-linear-gradient(bottom, #dfdfdf, #f1f1f1);
     848    background-image:    -moz-linear-gradient(bottom, #dfdfdf, #f1f1f1);
     849    background-image:      -o-linear-gradient(bottom, #dfdfdf, #f1f1f1);
     850    background-image: linear-gradient(to top, #dfdfdf, #f1f1f1);
    838851}
    839852
     
    9991012#adminmenu .wp-menu-arrow,
    10001013#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
    1001     background-color: #777; /* Fallback */
    1002     background-image: -ms-linear-gradient(bottom, #6d6d6d, #808080); /* IE10 */
    1003     background-image: -moz-linear-gradient(bottom, #6d6d6d, #808080); /* Firefox */
    1004     background-image: -o-linear-gradient(bottom, #6d6d6d, #808080); /* Opera */
    1005     background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080)); /* old Webkit */
    1006     background-image: -webkit-linear-gradient(bottom, #6d6d6d, #808080); /* new Webkit */
    1007     background-image: linear-gradient(bottom, #6d6d6d, #808080); /* proposed W3C Markup */
     1014    background: #777;
     1015    background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080));
     1016    background-image: -webkit-linear-gradient(bottom, #6d6d6d, #808080);
     1017    background-image:    -moz-linear-gradient(bottom, #6d6d6d, #808080);
     1018    background-image:      -o-linear-gradient(bottom, #6d6d6d, #808080);
     1019    background-image: linear-gradient(to top, #6d6d6d, #808080);
    10081020}
    10091021
    10101022#adminmenu .wp-menu-arrow div {
    1011     background-color: #777; /* Fallback */
    1012     background-image: -ms-linear-gradient(right bottom, #6d6d6d, #808080); /* IE10 */
    1013     background-image: -moz-linear-gradient(right bottom, #6d6d6d, #808080); /* Firefox */
    1014     background-image: -o-linear-gradient(right bottom, #6d6d6d, #808080); /* Opera */
    1015     background-image: -webkit-gradient(linear, right bottom, left top, from(#6d6d6d), to(#808080)); /* old Webkit */
    1016     background-image: -webkit-linear-gradient(right bottom, #6d6d6d, #808080); /* new Webkit */
    1017     background-image: linear-gradient(right bottom, #6d6d6d, #808080); /* proposed W3C Markup */
     1023    background: #777;
     1024    background-image: -webkit-gradient(linear, right bottom, left top, from(#6d6d6d), to(#808080));
     1025    background-image: -webkit-linear-gradient(bottom right, #6d6d6d, #808080);
     1026    background-image:    -moz-linear-gradient(bottom right, #6d6d6d, #808080);
     1027    background-image:      -o-linear-gradient(bottom right, #6d6d6d, #808080);
     1028    background-image: linear-gradient(to top left, #6d6d6d, #808080);
    10181029}
    10191030
     
    10951106#collapse-button {
    10961107    border-color: #ccc;
    1097     background-color: #f4f4f4; /* Fallback */
    1098     background-image: -ms-linear-gradient(bottom, #dfdfdf, #fff); /* IE10 */
    1099     background-image: -moz-linear-gradient(bottom, #dfdfdf, #fff); /* Firefox */
    1100     background-image: -o-linear-gradient(bottom, #dfdfdf, #fff); /* Opera */
    1101     background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#fff)); /* old Webkit */
    1102     background-image: -webkit-linear-gradient(bottom, #dfdfdf, #fff); /* new Webkit */
    1103     background-image: linear-gradient(bottom, #dfdfdf, #fff); /* proposed W3C Markup */
     1108    background: #f4f4f4;
     1109    background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#fff));
     1110    background-image: -webkit-linear-gradient(bottom, #dfdfdf, #fff);
     1111    background-image:    -moz-linear-gradient(bottom, #dfdfdf, #fff);
     1112    background-image:      -o-linear-gradient(bottom, #dfdfdf, #fff);
     1113    background-image: linear-gradient(to top, #dfdfdf, #fff);
    11041114}
    11051115
     
    11251135    #adminmenu li.wp-has-current-submenu,
    11261136    #adminmenu li.current.menu-top {
    1127         background-color: #777; /* Fallback */
    1128         background-image: -ms-linear-gradient(bottom, #6d6d6d, #808080); /* IE10 */
    1129         background-image: -moz-linear-gradient(bottom, #6d6d6d, #808080); /* Firefox */
    1130         background-image: -o-linear-gradient(bottom, #6d6d6d, #808080); /* Opera */
    1131         background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080)); /* old Webkit */
    1132         background-image: -webkit-linear-gradient(bottom, #6d6d6d, #808080); /* new Webkit */
    1133         background-image: linear-gradient(bottom, #6d6d6d, #808080); /* proposed W3C Markup */
     1137        background: #777;
     1138        background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080));
     1139        background-image: -webkit-linear-gradient(bottom, #6d6d6d, #808080);
     1140        background-image:    -moz-linear-gradient(bottom, #6d6d6d, #808080);
     1141        background-image:      -o-linear-gradient(bottom, #6d6d6d, #808080);
     1142        background-image: linear-gradient(to top, #6d6d6d, #808080);
    11341143    }
    11351144
     
    15971606.tablenav .tablenav-pages a {
    15981607    border-color: #e3e3e3;
    1599     background: #eee url('../images/menu-bits.gif?ver=20100610') repeat-x scroll left -379px;
     1608    background: #eee;
     1609    -moz-box-shadow:    inset 0 1px 0 #fff;
     1610    -webkit-box-shadow: inset 0 1px 0 #fff;
     1611    box-shadow:         inset 0 1px 0 #fff;
    16001612}
    16011613
     
    19171929.about-wrap h1 {
    19181930    color: #333;
    1919     text-shadow: 1px 1px 1px white;
     1931    text-shadow: 1px 1px 1px #fff;
    19201932}
    19211933
     
    19321944    color: #21759B;
    19331945}
     1946
    19341947.about-wrap h2 .nav-tab:hover {
    19351948    color: #d54e21;
    19361949}
     1950
    19371951.about-wrap h2 .nav-tab-active,
    19381952.about-wrap h2 .nav-tab-active:hover {
    19391953    color: #333;
    19401954}
     1955
    19411956.about-wrap h2 .nav-tab-active {
    1942     text-shadow: 1px 1px 1px white;
     1957    text-shadow: 1px 1px 1px #fff;
    19431958    color: #464646;
    19441959}
     
    19461961.about-wrap h3 {
    19471962    color: #333;
    1948     text-shadow: 1px 1px 1px white;
     1963    text-shadow: 1px 1px 1px #fff;
    19491964}
    19501965
     
    19611976
    19621977.about-wrap h4.wp-people-group {
    1963     text-shadow: 1px 1px 1px white;
     1978    text-shadow: 1px 1px 1px #fff;
    19641979}
    19651980
     
    19791994    -webkit-box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );
    19801995    box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );
     1996
    19811997}
    19821998.about-wrap li.wp-person .title {
    19831999    color: #464646;
    1984     text-shadow: 1px 1px 1px white;
     2000    text-shadow: 1px 1px 1px #fff;
    19852001}
    19862002
    19872003.freedoms-php .about-wrap ol li {
    19882004    color: #999;
     2005
    19892006}
    19902007.freedoms-php .about-wrap ol p {
     
    20702087}
    20712088
    2072 .rtl .tablenav .tablenav-pages a {
    2073     border-color: #e3e3e3;
    2074     background: #eee url('../images/menu-bits-rtl.gif?ver=20100610') repeat-x scroll right -379px;
    2075 }
    2076 
    20772089.rtl #post-body .misc-pub-section {
    20782090    border-right-color: transparent;
  • trunk/wp-admin/css/customize-controls.dev.css

    r21031 r21459  
    5858    font-weight: normal;
    5959    text-shadow: 0 1px 0 #fff;
    60 
    61     background-color: #f5f5f5;
    62     background-image: -webkit-linear-gradient( top, #f5f5f5, #eee );
    63     background-image:    -moz-linear-gradient( top, #f5f5f5, #eee );
    64     background-image:     -ms-linear-gradient( top, #f5f5f5, #eee );
    65     background-image:      -o-linear-gradient( top, #f5f5f5, #eee );
    66     background-image:         linear-gradient( top, #f5f5f5, #eee );
     60    background: #f5f5f5;
     61    background-image: -webkit-gradient(linear, left bottom, left top, from(#eee), to(#f5f5f5));
     62    background-image: -webkit-linear-gradient(bottom, #eee, #f5f5f5);
     63    background-image:    -moz-linear-gradient(bottom, #eee, #f5f5f5);
     64    background-image:      -o-linear-gradient(bottom, #eee, #f5f5f5);
     65    background-image: linear-gradient(to top, #eee, #f5f5f5);
    6766}
    6867
     
    7271    color: #fff;
    7372    text-shadow: 0 -1px 0 #333;
    74     background-color: #808080;
    75     background-image: -webkit-linear-gradient( top, #808080, #6d6d6d );
    76     background-image:    -moz-linear-gradient( top, #808080, #6d6d6d );
    77     background-image:     -ms-linear-gradient( top, #808080, #6d6d6d );
    78     background-image:      -o-linear-gradient( top, #808080, #6d6d6d );
    79     background-image:         linear-gradient( top, #808080, #6d6d6d );
     73    background: #808080;
     74    background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080));
     75    background-image: -webkit-linear-gradient(bottom, #6d6d6d, #808080);
     76    background-image:    -moz-linear-gradient(bottom, #6d6d6d, #808080);
     77    background-image:      -o-linear-gradient(bottom, #6d6d6d, #808080);
     78    background-image: linear-gradient(to top, #6d6d6d, #808080);
    8079}
    8180
     
    529528    padding: 2em;
    530529    font-size: 14px;
    531 
    532530    background: #fff;
    533531    border: 1px solid #dfdfdf;
    534 
    535532    -webkit-border-radius: 3px;
    536533    border-radius:         3px;
  • trunk/wp-admin/css/install.dev.css

    r19860 r21459  
    1616
    1717a {
    18     color: #21759B;
     18    color: #21759b;
    1919    text-decoration: none;
    2020}
    2121
    2222a:hover {
    23     color: #D54E21;
     23    color: #d54e21;
    2424}
    2525
     
    7272}
    7373
    74 .submit input, .button, .button-secondary {
     74.submit input,
     75.button,
     76.button-secondary {
    7577    font-family: sans-serif;
    7678    text-decoration: none;
     
    8284    color: #464646;
    8385    -webkit-border-radius: 15px;
    84     border-radius: 15px;
    85     -moz-box-sizing: content-box;
     86    border-radius:         15px;
    8687    -webkit-box-sizing: content-box;
    87     box-sizing: content-box;
    88 }
    89 
    90 .button:hover, .button-secondary:hover, .submit input:hover {
     88    -moz-box-sizing:    content-box;
     89    box-sizing:         content-box;
     90    background: #f2f2f2;
     91    background-image: -webkit-gradient(linear, left bottom, left top, from(#ededed), to(#fff));
     92    background-image: -webkit-linear-gradient(bottom, #ededed, #fff);
     93    background-image:    -moz-linear-gradient(bottom, #ededed, #fff);
     94    background-image:      -o-linear-gradient(bottom, #ededed, #fff);
     95    background-image: linear-gradient(to top, #ededed, #fff);
     96}
     97
     98.button:hover,
     99.button-secondary:hover,
     100.submit input:hover {
    91101    color: #000;
    92102    border-color: #666;
    93103}
    94104
    95 .button, .submit input, .button-secondary {
    96     background: #f2f2f2 url(../images/white-grad.png) repeat-x scroll left top;
    97 }
    98 
    99 .button:active, .submit input:active, .button-secondary:active {
    100     background: #eee url(../images/white-grad-active.png) repeat-x scroll left top;
     105.button:active,
     106.submit input:active,
     107.button-secondary:active {
     108    background: #eee;
     109    background-image: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
     110    background-image: -webkit-linear-gradient(top, #ededed, #fff);
     111    background-image:    -moz-linear-gradient(top, #ededed, #fff);
     112    background-image:      -o-linear-gradient(top, #ededed, #fff);
     113    background-image: linear-gradient(to bottom, #ededed, #fff);
    101114}
    102115
     
    146159    font-size: 15px;
    147160    padding: 2px;
    148     border: 1px #DFDFDF solid;
     161    border: 1px #dfdfdf solid;
    149162    -webkit-border-radius: 3px;
    150163    border-radius: 3px;
  • trunk/wp-admin/css/wp-admin.dev.css

    r21455 r21459  
    37603760    margin-bottom: 2px;
    37613761    border: 1px solid #d1d1d1;
    3762     background: #fff;
    3763     background-image: linear-gradient(bottom, rgb(255,255,255) 0%, rgb(247,247,247) 100%);
    3764     background-image: -o-linear-gradient(bottom, rgb(255,255,255) 0%, rgb(247,247,247) 100%);
    3765     background-image: -moz-linear-gradient(bottom, rgb(255,255,255) 0%, rgb(247,247,247) 100%);
    3766     background-image: -webkit-linear-gradient(bottom, rgb(255,255,255) 0%, rgb(247,247,247) 100%);
    3767     background-image: -ms-linear-gradient(bottom, rgb(255,255,255) 0%, rgb(247,247,247) 100%);
     3762    background: #f7f7f7;
     3763    background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#f7f7f7));
     3764    background-image: -webkit-linear-gradient(bottom, #fff, #f7f7f7);
     3765    background-image:    -moz-linear-gradient(bottom, #fff, #f7f7f7);
     3766    background-image:      -o-linear-gradient(bottom, #fff, #f7f7f7);
     3767    background-image: linear-gradient(to top, #fff, #f7f7f7);
    37683768    -webkit-border-radius: 3px;
    37693769    border-radius: 3px;
     
    37773777    height: 100%;
    37783778    margin-top: -24px;
    3779     background-color: #83B4D8;
    3780     background-image: linear-gradient(bottom, rgb(114,167,207) 0%, rgb(144,197,238) 100%);
    3781     background-image: -o-linear-gradient(bottom, rgb(114,167,207) 0%, rgb(144,197,238) 100%);
    3782     background-image: -moz-linear-gradient(bottom, rgb(114,167,207) 0%, rgb(144,197,238) 100%);
    3783     background-image: -webkit-linear-gradient(bottom, rgb(114,167,207) 0%, rgb(144,197,238) 100%);
    3784     background-image: -ms-linear-gradient(bottom, rgb(114,167,207) 0%, rgb(144,197,238) 100%);
     3779    background-color: #8cc1e9;
     3780    background-image: -webkit-gradient(linear, left bottom, left top, from(#72a7cf), to(#8cc1e9));
     3781    background-image: -webkit-linear-gradient(bottom, #72a7cf, #8cc1e9);
     3782    background-image:    -moz-linear-gradient(bottom, #72a7cf, #8cc1e9);
     3783    background-image:      -o-linear-gradient(bottom, #72a7cf, #8cc1e9);
     3784    background-image: linear-gradient(to top, #72a7cf, #8cc1e9);
    37853785    -webkit-border-radius: 3px;
    37863786    border-radius: 3px;
     
    47274727.button-highlighted,
    47284728input.button-highlighted,
    4729 #quicktags #ed_strong,
    47304729#ed_reply_toolbar #ed_reply_strong,
    47314730.item-controls .item-order a,
     
    48554854    cursor: move;
    48564855    color: #333;
    4857     background: #dfdfdf;
    4858     background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.07, #e6e6e6), color-stop(0.77, #d8d8d8));
     4856    background: #e6e6e6;
     4857    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(7%, #e6e6e6), color-stop(77%, #d8d8d8));
    48594858    background-image: -webkit-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
    4860     background-image: -moz-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
    4861     background-image: -ms-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
    4862     background-image: -o-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
    4863     background-image: linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
     4859    background-image:    -moz-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
     4860    background-image:      -o-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
     4861    background-image: linear-gradient(to top, #e6e6e6 7%, #d8d8d8 77%);
    48644862    -webkit-border-radius: 5px;
    48654863    border-radius: 5px;
     
    68786876
    68796877#menu-to-edit .menu-item-invalid .menu-item-handle {
    6880     background-color: #f6c9cc; /* Fallback */
    6881     background-image: -ms-linear-gradient(bottom, #f6c9cc, #fdf8ff); /* IE10 */
    6882     background-image: -moz-linear-gradient(bottom, #f6c9cc, #fdf8ff); /* Firefox */
    6883     background-image: -o-linear-gradient(bottom, #f6c9cc, #fdf8ff); /* Opera */
    6884     background-image: -webkit-gradient(linear, left bottom, left top, from(#f6c9cc), to(#fdf8ff)); /* old Webkit  */
    6885     background-image: -webkit-linear-gradient(bottom, #f6c9cc, #fdf8ff); /* new Webkit */
    6886     background-image: linear-gradient(bottom, #f6c9cc, #fdf8ff); /* proposed W3C Markup */
     6878    background: #f6c9cc;
     6879    background-image: -webkit-gradient(linear, left bottom, left top, from(#f6c9cc), to(#fdf8ff));
     6880    background-image: -webkit-linear-gradient(bottom, #f6c9cc, #fdf8ff);
     6881    background-image:    -moz-linear-gradient(bottom, #f6c9cc, #fdf8ff);
     6882    background-image:      -o-linear-gradient(bottom, #f6c9cc, #fdf8ff);
     6883    background-image: linear-gradient(to top, #f6c9cc, #fdf8ff);
    68876884}
    68886885
  • trunk/wp-includes/css/admin-bar.dev.css

    r21452 r21459  
    3939    min-width: 600px; /* match the min-width of the body in wp-admin.css */
    4040    z-index: 99999;
    41 
    42     background-color: #464646; /* Fallback */
    43     background-image: -ms-linear-gradient(bottom, #373737, #464646 5px); /* IE10 */
    44     background-image: -moz-linear-gradient(bottom, #373737, #464646 5px); /* Firefox */
    45     background-image: -o-linear-gradient(bottom, #373737, #464646 5px); /* Opera */
    46     background-image: -webkit-gradient(linear, left bottom, left top, from(#373737), to(#464646)); /* old Webkit */
    47     background-image: -webkit-linear-gradient(bottom, #373737, #464646 5px); /* new Webkit */
    48     background-image: linear-gradient(bottom, #373737, #464646 5px); /* proposed W3C Markup */
     41    background: #464646;
     42    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #373737), color-stop(18%, #464646));
     43    background-image: -webkit-linear-gradient(bottom, #373737 0, #464646 5px);
     44    background-image:    -moz-linear-gradient(bottom, #373737 0, #464646 5px);
     45    background-image:      -o-linear-gradient(bottom, #373737 0, #464646 5px);
     46    background-image: linear-gradient(to top, #373737 0, #464646 5px);
    4947}
    5048
     
    200198#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus {
    201199    color: #fafafa;
    202     background-color: #3a3a3a; /* Fallback */
    203     background-image: -ms-linear-gradient(bottom, #3a3a3a, #222); /* IE10 */
    204     background-image: -moz-linear-gradient(bottom, #3a3a3a, #222); /* Firefox */
    205     background-image: -o-linear-gradient(bottom, #3a3a3a, #222); /* Opera */
    206     background-image: -webkit-gradient(linear, left bottom, left top, from(#3a3a3a), to(#222)); /* old Webkit */
    207     background-image: -webkit-linear-gradient(bottom, #3a3a3a, #222); /* new Webkit */
    208     background-image: linear-gradient(bottom, #3a3a3a, #222); /* proposed W3C Markup */
     200    background: #222;
     201    background-image: -webkit-gradient(linear, left bottom, left top, from(#3a3a3a), to(#222));
     202    background-image: -webkit-linear-gradient(bottom, #3a3a3a, #222);
     203    background-image:    -moz-linear-gradient(bottom, #3a3a3a, #222);
     204    background-image:      -o-linear-gradient(bottom, #3a3a3a, #222);
     205    background-image: linear-gradient(to top, #3a3a3a, #222);
    209206}
    210207
     
    298295#wpadminbar .ab-top-secondary {
    299296    float: right;
    300     background-color: #464646; /* Fallback */
    301     background-image: -ms-linear-gradient(bottom, #373737, #464646 5px); /* IE10 */
    302     background-image: -moz-linear-gradient(bottom, #373737, #464646 5px); /* Firefox */
    303     background-image: -o-linear-gradient(bottom, #373737, #464646 5px); /* Opera */
    304     background-image: -webkit-gradient(linear, left bottom, left top, from(#373737), to(#464646)); /* old Webkit */
    305     background-image: -webkit-linear-gradient(bottom, #373737, #464646 5px); /* new Webkit */
    306     background-image: linear-gradient(bottom, #373737, #464646 5px); /* proposed W3C Markup */
     297    background: #464646;
     298    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #373737), color-stop(18%, #464646));
     299    background-image: -webkit-linear-gradient(bottom, #373737 0, #464646 5px);
     300    background-image:    -moz-linear-gradient(bottom, #373737 0, #464646 5px);
     301    background-image:      -o-linear-gradient(bottom, #373737 0, #464646 5px);
     302    background-image: linear-gradient(to top, #373737 0, #464646 5px);
    307303}
    308304
  • trunk/wp-includes/css/editor.dev.css

    r21439 r21459  
    288288    font-family: Arial, "Bitstream Vera Sans", Helvetica, Verdana, sans-serif;
    289289    font-size: 12px;
    290     border-color: #B2B2B2;
     290    border-color: #b2b2b2;
    291291    background-color: #fff;
    292292}
     
    902902.wp_themeSkin .mceListBox .mceOpen {
    903903    border-color: #ccc;
    904     background-color: #eee; /* Fallback */
    905     background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */
    906     background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */
    907     background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */
    908     background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */
    909     background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */
    910     background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */
     904    background: #eee;
     905    background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff));
     906    background-image: -webkit-linear-gradient(bottom, #ddd, #fff);
     907    background-image:    -moz-linear-gradient(bottom, #ddd, #fff);
     908    background-image:      -o-linear-gradient(bottom, #ddd, #fff);
     909    background-image: linear-gradient(to top, #ddd, #fff);
    911910}
    912911
    913912.wp_themeSkin a.mceButtonEnabled:hover {
    914913    border-color: #a0a0a0;
    915     background: #ddd; /* Fallback */
    916     background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */
    917     background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */
    918     background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */
    919     background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */
    920     background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */
    921     background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */
     914    background: #eee;
     915    background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff));
     916    background-image: -webkit-linear-gradient(bottom, #ccc, #fff);
     917    background-image:    -moz-linear-gradient(bottom, #ccc, #fff);
     918    background-image:      -o-linear-gradient(bottom, #ccc, #fff);
     919    background-image: linear-gradient(to top, #ccc, #fff);
    922920}
    923921
     
    928926.wp_themeSkin a.mceButtonActive:active,
    929927.wp_themeSkin a.mceButtonActive:hover {
    930     background-color: #ddd; /* Fallback */
    931     background-image: -ms-linear-gradient(bottom, #eee, #bbb); /* IE10 */
    932     background-image: -moz-linear-gradient(bottom, #eee, #bbb); /* Firefox */
    933     background-image: -o-linear-gradient(bottom, #eee, #bbb); /* Opera */
    934     background-image: -webkit-gradient(linear, left bottom, left top, from(#eee), to(#bbb)); /* old Webkit */
    935     background-image: -webkit-linear-gradient(bottom, #eee, #bbb); /* new Webkit */
    936     background-image: linear-gradient(bottom, #eee, #bbb); /* proposed W3C Markup */
    937928    border-color: #909090;
     929    background: #ddd;
     930    background-image: -webkit-gradient(linear, left bottom, left top, from(#eee), to(#bbb));
     931    background-image: -webkit-linear-gradient(bottom, #eee, #bbb);
     932    background-image:    -moz-linear-gradient(bottom, #eee, #bbb);
     933    background-image:      -o-linear-gradient(bottom, #eee, #bbb);
     934    background-image: linear-gradient(to top, #eee, #bbb);
    938935}
    939936
     
    961958.wp_themeSkin .mceListBoxHover .mceOpen {
    962959    border-color: #909090;
    963     background-color: #eee; /* Fallback */
    964     background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */
    965     background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */
    966     background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */
    967     background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */
    968     background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */
    969     background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */
     960    background: #eee;
     961    background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff));
     962    background-image: -webkit-linear-gradient(bottom, #ccc, #fff);
     963    background-image:    -moz-linear-gradient(bottom, #ccc, #fff);
     964    background-image:      -o-linear-gradient(bottom, #ccc, #fff);
     965    background-image: linear-gradient(to top, #ccc, #fff);
    970966}
    971967
     
    984980
    985981.wp_themeSkin table.mceSplitButton td {
    986     background-color: #eee; /* Fallback */
    987     background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */
    988     background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */
    989     background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */
    990     background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */
    991     background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */
    992     background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */
     982    background: #eee;
     983    background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff));
     984    background-image: -webkit-linear-gradient(bottom, #ddd, #fff);
     985    background-image:    -moz-linear-gradient(bottom, #ddd, #fff);
     986    background-image:      -o-linear-gradient(bottom, #ddd, #fff);
     987    background-image: linear-gradient(to top, #ddd, #fff);
    993988}
    994989
    995990.wp_themeSkin table.mceSplitButton:hover td {
    996     background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */
    997     background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */
    998     background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */
    999     background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */
    1000     background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */
    1001     background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */
     991    background: #eee;
     992    background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff));
     993    background-image: -webkit-linear-gradient(bottom, #ccc, #fff);
     994    background-image:    -moz-linear-gradient(bottom, #ccc, #fff);
     995    background-image:      -o-linear-gradient(bottom, #ccc, #fff);
     996    background-image: linear-gradient(to top, #ccc, #fff);
    1002997}
    1003998
     
    10581053.wp_themeSkin tr.mceFirst td.mceToolbar {
    10591054    border-bottom: 1px solid #ccc;
    1060     background-color: #e9e9e9; /* Fallback */
    1061     background-image: -ms-linear-gradient(bottom, #ddd, #e9e9e9); /* IE10 */
    1062     background-image: -moz-linear-gradient(bottom, #ddd, #e9e9e9); /* Firefox */
    1063     background-image: -o-linear-gradient(bottom, #ddd, #e9e9e9); /* Opera */
    1064     background-image: -webkit-linear-gradient(bottom, #ddd, #e9e9e9); /* new Webkit */
    1065     background-image: linear-gradient(bottom, #ddd, #e9e9e9); /* proposed W3C Markup */
     1055    background: #e9e9e9;
     1056    background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#e9e9e9));
     1057    background-image: -webkit-linear-gradient(bottom, #ddd, #e9e9e9);
     1058    background-image:    -moz-linear-gradient(bottom, #ddd, #e9e9e9);
     1059    background-image:      -o-linear-gradient(bottom, #ddd, #e9e9e9);
     1060    background-image: linear-gradient(to top, #ddd, #e9e9e9);
    10661061}
    10671062
     
    11451140    min-width: 26px;
    11461141    padding: 2px 4px;
    1147     font: 12px/18px Arial,Helvetica,sans-serif normal;
     1142    font: 12px/18px Arial, Helvetica, sans-serif normal;
    11481143    color: #464646;
    1149     border: 1px solid #C3C3C3;
     1144    border: 1px solid #c3c3c3;
    11501145    -webkit-border-radius: 3px;
    11511146    border-radius: 3px;
    1152     background-color: #eee;
    1153     background-image: -ms-linear-gradient(bottom, #e3e3e3, #fff);
    1154     background-image: -moz-linear-gradient(bottom, #e3e3e3, #fff);
    1155     background-image: -o-linear-gradient(bottom, #e3e3e3, #fff);
     1147    background: #eee;
     1148    background-image: -webkit-gradient(linear, left bottom, left top, from(#e3e3e3), to(#fff));
    11561149    background-image: -webkit-linear-gradient(bottom, #e3e3e3, #fff);
    1157     background-image: linear-gradient(bottom, #e3e3e3, #fff);
     1150    background-image:    -moz-linear-gradient(bottom, #e3e3e3, #fff);
     1151    background-image:      -o-linear-gradient(bottom, #e3e3e3, #fff);
     1152    background-image: linear-gradient(to top, #e3e3e3, #fff);
    11581153}
    11591154
     
    18191814    text-shadow: 0 1px 0 #fff;
    18201815    background-color: #f4f4f4;
    1821     background-image: -moz-linear-gradient(bottom,  #e4e4e4,  #f9f9f9);
     1816    background: #f4f4f4;
    18221817    background-image: -webkit-gradient(linear, left bottom, left top, from(#e4e4e4), to(#f9f9f9));
     1818    background-image: -webkit-linear-gradient(bottom, #e4e4e4, #f9f9f9);
     1819    background-image:    -moz-linear-gradient(bottom, #e4e4e4, #f9f9f9);
     1820    background-image:      -o-linear-gradient(bottom, #e4e4e4, #f9f9f9);
     1821    background-image: linear-gradient(to top, #e4e4e4, #f9f9f9);
    18231822}
    18241823
     
    18281827    color: #333;
    18291828    border-color: #999;
    1830     background-color: #eee;
    1831     background-image: -moz-linear-gradient(bottom,  #f9f9f9,  #e0e0e0);
    1832     background-image: -webkit-gradient(linear, left bottom, left top, from(#f9f9f9), to(#e0e0e0));
     1829    background: #eee;
     1830    background-image: -webkit-gradient(linear, left top, left bottom, from(#e4e4e4), to(#f9f9f9));
     1831    background-image: -webkit-linear-gradient(top, #e4e4e4, #f9f9f9);
     1832    background-image:    -moz-linear-gradient(top, #e4e4e4, #f9f9f9);
     1833    background-image:      -o-linear-gradient(top, #e4e4e4, #f9f9f9);
     1834    background-image: linear-gradient(to bottom, #e4e4e4, #f9f9f9);
    18331835}
    18341836
     
    19231925#fullscreen-topbar {
    19241926    border-bottom-color: #DFDFDF;
    1925     background-color: #f1f1f1; /* Fallback */
    1926     background-image: -ms-linear-gradient(top, #f9f9f9, #ececec); /* IE10 */
    1927     background-image: -moz-linear-gradient(top, #f9f9f9, #ececec); /* Firefox */
    1928     background-image: -o-linear-gradient(top, #f9f9f9, #ececec); /* Opera */
    1929     background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec)); /* old Webkit */
    1930     background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec); /* new Webkit */
    1931     background-image: linear-gradient(top, #f9f9f9, #ececec); /* proposed W3C Markup */
     1927    background: #f1f1f1;
     1928    background-image: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f9f9f9));
     1929    background-image: -webkit-linear-gradient(bottom, #ececec, #f9f9f9);
     1930    background-image:    -moz-linear-gradient(bottom, #ececec, #f9f9f9);
     1931    background-image:      -o-linear-gradient(bottom, #ececec, #f9f9f9);
     1932    background-image: linear-gradient(to top, #ececec, #f9f9f9);
    19321933}
    19331934
  • trunk/wp-includes/css/wp-pointer.dev.css

    r21439 r21459  
    3030    border-radius: 3px 3px 0 0;
    3131    text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
    32     background-color: #8cc1e9;
    33     background-image: -webkit-linear-gradient(bottom, rgb(114,167,207) 0%, rgb(140,193,233) 100%);
    34     background-image: -moz-linear-gradient(bottom, rgb(114,167,207) 0%, rgb(140,193,233) 100%);
    35     background-image: -ms-linear-gradient(bottom, rgb(114,167,207) 0%, rgb(140,193,233) 100%);
    36     background-image: -o-linear-gradient(bottom, rgb(114,167,207) 0%, rgb(140,193,233) 100%);
    37     background-image: linear-gradient(bottom, rgb(114,167,207) 0%, rgb(140,193,233) 100%);
     32    background: #8cc1e9;
     33    background-image: -webkit-gradient(linear, left bottom, left top, from(#72a7cf), to(#8cc1e9));
     34    background-image: -webkit-linear-gradient(bottom, #72a7cf, #8cc1e9);
     35    background-image:    -moz-linear-gradient(bottom, #72a7cf, #8cc1e9);
     36    background-image:      -o-linear-gradient(bottom, #72a7cf, #8cc1e9);
     37    background-image: linear-gradient(to top, #72a7cf, #8cc1e9);
    3838}
    3939
Note: See TracChangeset for help on using the changeset viewer.