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

git-svn-id: http://core.svn.wordpress.org/trunk@21459 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2012-08-06 17:21:41 +00:00
parent 59eb150fdc
commit 853df37fe8
8 changed files with 412 additions and 445 deletions

View File

@ -202,19 +202,18 @@ h3.dashboard-widget-title small,
#nav-menu-footer, #nav-menu-footer,
.menu-item-handle, .menu-item-handle,
#fullscreen-topbar { #fullscreen-topbar {
background-color: #f5fafd; /* Fallback */ background: #f5fafd;
background-image: -ms-linear-gradient(top, #f7fcfe, #eff8ff); /* IE10 */ background-image: -webkit-gradient(linear, left bottom, left top, from(#eff8ff), to(#f7fcfe));
background-image: -moz-linear-gradient(top, #f7fcfe, #eff8ff); /* Firefox */ background-image: -webkit-linear-gradient(bottom, #eff8ff, #f7fcfe);
background-image: -o-linear-gradient(top, #f7fcfe, #eff8ff); /* Opera */ background-image: -moz-linear-gradient(bottom, #eff8ff, #f7fcfe);
background-image: -webkit-gradient(linear, left top, left bottom, from(#f7fcfe), to(#eff8ff)); /* old Webkit */ background-image: -o-linear-gradient(bottom, #eff8ff, #f7fcfe);
background-image: -webkit-linear-gradient(top, #f7fcfe, #eff8ff); /* new Webkit */ background-image: linear-gradient(to top, #eff8ff, #f7fcfe);
background-image: linear-gradient(top, #f7fcfe, #eff8ff); /* proposed W3C Markup */
} }
.widget .widget-top, .widget .widget-top,
.postbox h3, .postbox h3,
.stuffbox h3 { .stuffbox h3 {
border-bottom-color: #D1E5EE; border-bottom-color: #d1e5ee;
text-shadow: #fff 0 1px 0; text-shadow: #fff 0 1px 0;
-webkit-box-shadow: 0 1px 0 #fff; -webkit-box-shadow: 0 1px 0 #fff;
box-shadow: 0 1px 0 #fff; box-shadow: 0 1px 0 #fff;
@ -223,7 +222,7 @@ h3.dashboard-widget-title small,
.form-table th, .form-table th,
.form-wrap label { .form-wrap label {
color: #222; color: #222;
text-shadow: #fff 0 1px 0; text-shadow: 0 1px 0 #fff;
} }
.description, .description,
@ -392,14 +391,24 @@ input[type=submit]:hover {
.button, .button,
.submit input, .submit input,
.button-secondary { .button-secondary {
background: #f2f2f2 url(../images/white-grad.png) repeat-x scroll left top; text-shadow: 0 1px 0 #fff;
text-shadow: rgba(255,255,255,1) 0 1px 0; background: #f2f2f2;
background-image: -webkit-gradient(linear, left bottom, left top, from(#ededed), to(#fff));
background-image: -webkit-linear-gradient(bottom, #ededed, #fff);
background-image: -moz-linear-gradient(bottom, #ededed, #fff);
background-image: -o-linear-gradient(bottom, #ededed, #fff);
background-image: linear-gradient(to top, #ededed, #fff);
} }
.button:active, .button:active,
.submit input:active, .submit input:active,
.button-secondary:active { .button-secondary:active {
background: #eee url(../images/white-grad-active.png) repeat-x scroll left top; background: #eee;
background-image: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
background-image: -webkit-linear-gradient(top, #ededed, #fff);
background-image: -moz-linear-gradient(top, #ededed, #fff);
background-image: -o-linear-gradient(top, #ededed, #fff);
background-image: linear-gradient(to bottom, #ededed, #fff);
} }
input.button-primary, input.button-primary,
@ -408,15 +417,25 @@ a.button-primary {
border-color: #298cba; border-color: #298cba;
font-weight: bold; font-weight: bold;
color: #fff; color: #fff;
background: #21759B url(../images/button-grad.png) repeat-x scroll left top; text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
text-shadow: rgba(0,0,0,0.3) 0 -1px 0; background: #21759b;
background-image: -webkit-gradient(linear, left bottom, left top, from(#227199), to(#298cba));
background-image: -webkit-linear-gradient(bottom, #227199, #298cba);
background-image: -moz-linear-gradient(bottom, #227199, #298cba);
background-image: -o-linear-gradient(bottom, #227199, #298cba);
background-image: linear-gradient(to top, #227199, #298cba);
} }
input.button-primary:active, input.button-primary:active,
button.button-primary:active, button.button-primary:active,
a.button-primary:active { a.button-primary:active {
background: #21759b url(../images/button-grad-active.png) repeat-x scroll left top;
color: #eaf2fa; color: #eaf2fa;
background: #298cba;
background-image: -webkit-gradient(linear, left top, left bottom, from(#227199), to(#298cba));
background-image: -webkit-linear-gradient(top, #227199, #298cba);
background-image: -moz-linear-gradient(top, #227199, #298cba);
background-image: -o-linear-gradient(top, #227199, #298cba);
background-image: linear-gradient(to bottom, #227199, #298cba);
} }
input.button-primary:hover, input.button-primary:hover,
@ -441,8 +460,8 @@ a.button.disabled {
.button-primary-disabled, .button-primary-disabled,
.button-primary[disabled], .button-primary[disabled],
.button-primary:disabled { .button-primary:disabled {
color: #9FD0D5 !important; color: #9fd0d5 !important;
background: #298CBA !important; background: #298cba !important;
} }
a:hover, a:hover,
@ -633,16 +652,6 @@ input.readonly, textarea.readonly {
background-color: #ddd; background-color: #ddd;
} }
.quicktags-toolbar input {
background: #fff;
background-image: -ms-linear-gradient(bottom, #e5f0f8, #fff); /* IE10 */
background-image: -moz-linear-gradient(bottom, #e5f0f8, #fff); /* Firefox */
background-image: -o-linear-gradient(bottom, #e5f0f8, #fff); /* Opera */
background-image: -webkit-gradient(linear, left bottom, left top, from(#e5f0f8), to(#fff)); /* old Webkit */
background-image: -webkit-linear-gradient(bottom, #e5f0f8, #fff) !important; /* new Webkit */
background-image: linear-gradient(bottom, #e5f0f8, #fff); /* proposed W3C Markup */
}
#editable-post-name { #editable-post-name {
background-color: #fffbcc; background-color: #fffbcc;
} }
@ -868,21 +877,6 @@ table.widefat .spam a:hover,
} }
/* editors */ /* editors */
#quicktags {
border-color: #cfdfe9;
background-color: #cfdfe9;
background-image: url("../images/ed-bg-vs.gif?ver=20101102");
}
.quicktags-toolbar input {
border-color: #b2c4c8;
}
.quicktags-toolbar input:hover {
border-color: #d0dfe9;
background: #f0f8fe;
}
#poststuff .wp-editor-wrap .wp_themeSkin .mceStatusbar { #poststuff .wp-editor-wrap .wp_themeSkin .mceStatusbar {
border-color: #d0dfe9; border-color: #d0dfe9;
} }
@ -910,6 +904,15 @@ table.widefat .spam a:hover,
color: #000; color: #000;
} }
.wp-editor-wrap .quicktags-toolbar input {
background: #fff;
background-image: -webkit-gradient(linear, left bottom, left top, from(#e5f0f8), to(#fff));
background-image: -webkit-linear-gradient(bottom, #e5f0f8, #fff);
background-image: -moz-linear-gradient(bottom, #e5f0f8, #fff);
background-image: -o-linear-gradient(bottom, #e5f0f8, #fff);
background-image: linear-gradient(to top, #e5f0f8, #fff);
}
/* Containers */ /* Containers */
.wp-editor-wrap .wp_themeSkin table.mceLayout { .wp-editor-wrap .wp_themeSkin table.mceLayout {
border-color: #bed1dd #bed1dd #d0dfe9; border-color: #bed1dd #bed1dd #d0dfe9;
@ -932,26 +935,26 @@ table.widefat .spam a:hover,
} }
/* Button */ /* Button */
.wp-editor-wrap .wp_themeSkin .mceButton { .wp-editor-wrap .wp_themeSkin .mceButton,
border-color: #B0C8D7; .wp-editor-wrap .wp_themeSkin .mceListBox .mceText,
background-color: #cfdfe9; /* Fallback */ .wp-editor-wrap .wp_themeSkin .mceListBox .mceOpen {
background-image: -ms-linear-gradient(bottom, #cfdfe9, #fff); /* IE10 */ border-color: #b0c8d7;
background-image: -moz-linear-gradient(bottom, #cfdfe9, #fff); /* Firefox */ background: #cfdfe9;
background-image: -o-linear-gradient(bottom, #cfdfe9, #fff); /* Opera */ background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#fff));
background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#fff)); /* old Webkit */ background-image: -webkit-linear-gradient(bottom, #cfdfe9, #fff);
background-image: -webkit-linear-gradient(bottom, #cfdfe9, #fff) !important; /* new Webkit */ background-image: -moz-linear-gradient(bottom, #cfdfe9, #fff);
background-image: linear-gradient(bottom, #cfdfe9, #fff); /* proposed W3C Markup */ background-image: -o-linear-gradient(bottom, #cfdfe9, #fff);
background-image: linear-gradient(to top, #cfdfe9, #fff);
} }
.wp-editor-wrap .wp_themeSkin a.mceButtonEnabled:hover { .wp-editor-wrap .wp_themeSkin a.mceButtonEnabled:hover {
border-color: #5589AA !important; border-color: #5589aa;
background-color: #c9c9c9; /* Fallback */ background: #c9c9c9;
background-image: -ms-linear-gradient(bottom, #bdccd5, #fff); /* IE10 */ background-image: -webkit-gradient(linear, left bottom, left top, from(#bdccd5), to(#000));
background-image: -moz-linear-gradient(bottom, #bdccd5, #fff); /* Firefox */ background-image: -webkit-linear-gradient(bottom, #bdccd5, #fff);
background-image: -o-linear-gradient(bottom, #bdccd5, #fff); /* Opera */ background-image: -moz-linear-gradient(bottom, #bdccd5, #fff);
background-image: -webkit-gradient(linear, left bottom, left top, from(#bdccd5), to(#fff)); /* old Webkit */ background-image: -o-linear-gradient(bottom, #bdccd5, #fff);
background-image: -webkit-linear-gradient(bottom, #bdccd5, #fff) !important; /* new Webkit */ background-image: linear-gradient(to top, #bdccd5, #fff);
background-image: linear-gradient(bottom, #bdccd5, #fff); /* proposed W3C Markup */
} }
.wp-editor-wrap .wp_themeSkin a.mceButton:active, .wp-editor-wrap .wp_themeSkin a.mceButton:active,
@ -960,35 +963,21 @@ table.widefat .spam a:hover,
.wp-editor-wrap .wp_themeSkin a.mceButtonActive, .wp-editor-wrap .wp_themeSkin a.mceButtonActive,
.wp-editor-wrap .wp_themeSkin a.mceButtonActive:active, .wp-editor-wrap .wp_themeSkin a.mceButtonActive:active,
.wp-editor-wrap .wp_themeSkin a.mceButtonActive:hover { .wp-editor-wrap .wp_themeSkin a.mceButtonActive:hover {
background: #B0C8D7 !important; background: #b0c8d7;
background-image: -ms-linear-gradient(bottom, #fff, #cfdfe9); /* IE10 */ border-color: #5589aa;
background-image: -moz-linear-gradient(bottom, #fff, #cfdfe9); /* Firefox */ background-image: -webkit-gradient(linear, left top, left bottom, from(#cfdfe9), to(#fff));
background-image: -o-linear-gradient(bottom, #fff, #cfdfe9); /* Opera */ background-image: -webkit-linear-gradient(top, #cfdfe9, #fff);
background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#cfdfe9)); /* old Webkit */ background-image: -moz-linear-gradient(top, #cfdfe9, #fff);
background-image: -webkit-linear-gradient(bottom, #fff, #cfdfe9) !important; /* new Webkit */ background-image: -o-linear-gradient(top, #cfdfe9, #fff);
background-image: linear-gradient(bottom, #fff, #cfdfe9); /* proposed W3C Markup */ background-image: linear-gradient(to bottom, #cfdfe9, #fff);
border-color: #5589AA !important;
} }
.wp-editor-wrap .wp_themeSkin .mceButtonDisabled { .wp-editor-wrap .wp_themeSkin .mceButtonDisabled {
border-color: #B0C8D7 !important; border-color: #b0c8d7 !important;
}
/* ListBox */
.wp-editor-wrap .wp_themeSkin .mceListBox .mceText,
.wp-editor-wrap .wp_themeSkin .mceListBox .mceOpen {
border-color: #B0C8D7;
background-color: #cfdfe9; /* Fallback */
background-image: -ms-linear-gradient(bottom, #cfdfe9, #fff); /* IE10 */
background-image: -moz-linear-gradient(bottom, #cfdfe9, #fff); /* Firefox */
background-image: -o-linear-gradient(bottom, #cfdfe9, #fff); /* Opera */
background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#fff)); /* old Webkit */
background-image: -webkit-linear-gradient(bottom, #cfdfe9, #fff) !important; /* new Webkit */
background-image: linear-gradient(bottom, #cfdfe9, #fff); /* proposed W3C Markup */
} }
.wp-editor-wrap .wp_themeSkin .mceListBox .mceOpen { .wp-editor-wrap .wp_themeSkin .mceListBox .mceOpen {
border-left: 0px !important; border-left: 0 !important;
} }
.wp-editor-wrap .wp_themeSkin table.mceListBoxEnabled:hover .mceOpen, .wp-editor-wrap .wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
@ -997,74 +986,66 @@ table.widefat .spam a:hover,
.wp-editor-wrap .wp_themeSkin .mceListBoxSelected .mceOpen, .wp-editor-wrap .wp_themeSkin .mceListBoxSelected .mceOpen,
.wp-editor-wrap .wp_themeSkin .mceListBoxSelected .mceText, .wp-editor-wrap .wp_themeSkin .mceListBoxSelected .mceText,
.wp-editor-wrap .wp_themeSkin table.mceListBoxEnabled:active .mceText { .wp-editor-wrap .wp_themeSkin table.mceListBoxEnabled:active .mceText {
background: #B0C8D7; background: #b0c8d7;
border-color: #5589AA !important; border-color: #5589aa;
} }
/* List Box Hover */
.wp-editor-wrap .wp_themeSkin table.mceListBoxEnabled:hover .mceText, .wp-editor-wrap .wp_themeSkin table.mceListBoxEnabled:hover .mceText,
.wp-editor-wrap .wp_themeSkin .mceListBoxHover .mceText, .wp-editor-wrap .wp_themeSkin .mceListBoxHover .mceText,
.wp-editor-wrap .wp_themeSkin table.mceListBoxEnabled:hover .mceOpen, .wp-editor-wrap .wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
.wp-editor-wrap .wp_themeSkin .mceListBoxHover .mceOpen { .wp-editor-wrap .wp_themeSkin .mceListBoxHover .mceOpen {
border-color: #5589AA !important; border-color: #5589aa;
background-color: #c9c9c9; /* Fallback */ background: #c9c9c9;
background-image: -ms-linear-gradient(bottom, #cfdfe9, #fff); /* IE10 */ background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#fff));
background-image: -moz-linear-gradient(bottom, #cfdfe9, #fff); /* Firefox */ background-image: -webkit-linear-gradient(bottom, #cfdfe9, #fff);
background-image: -o-linear-gradient(bottom, #cfdfe9, #fff); /* Opera */ background-image: -moz-linear-gradient(bottom, #cfdfe9, #fff);
background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#fff)); /* old Webkit */ background-image: -o-linear-gradient(bottom, #cfdfe9, #fff);
background-image: -webkit-linear-gradient(bottom, #cfdfe9, #fff) !important; /* new Webkit */ background-image: linear-gradient(to top, #cfdfe9, #fff);
background-image: linear-gradient(bottom, #cfdfe9, #fff); /* proposed W3C Markup */
}
.wp-editor-wrap .wp_themeSkin select.mceListBox {
border-color: #B2B2B2;
background-color: #fff;
} }
/* SplitButton */ /* SplitButton */
.wp-editor-wrap .wp_themeSkin .mceSplitButton a.mceAction, .wp-editor-wrap .wp_themeSkin .mceSplitButton a.mceAction,
.wp-editor-wrap .wp_themeSkin .mceSplitButton a.mceOpen { .wp-editor-wrap .wp_themeSkin .mceSplitButton a.mceOpen {
border-color: #B0C8D7; border-color: #b0c8d7;
} }
.wp-editor-wrap .wp_themeSkin .mceSplitButton a.mceOpen:hover, .wp-editor-wrap .wp_themeSkin .mceSplitButton a.mceOpen:hover,
.wp-editor-wrap .wp_themeSkin .mceSplitButtonSelected a.mceOpen, .wp-editor-wrap .wp_themeSkin .mceSplitButtonSelected a.mceOpen,
.wp-editor-wrap .wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction, .wp-editor-wrap .wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,
.wp-editor-wrap .wp_themeSkin .mceSplitButton a.mceAction:hover { .wp-editor-wrap .wp_themeSkin .mceSplitButton a.mceAction:hover {
border-color: #5589AA !important; border-color: #5589aa;
} }
.wp-editor-wrap .wp_themeSkin table.mceSplitButton td { .wp-editor-wrap .wp_themeSkin table.mceSplitButton td {
background-color: #cfdfe9; /* Fallback */ background: #cfdfe9;
background-image: -ms-linear-gradient(bottom, #cfdfe9, #fff); /* IE10 */ background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#fff));
background-image: -moz-linear-gradient(bottom, #cfdfe9, #fff); /* Firefox */ background-image: -webkit-linear-gradient(bottom, #cfdfe9, #fff);
background-image: -o-linear-gradient(bottom, #cfdfe9, #fff); /* Opera */ background-image: -moz-linear-gradient(bottom, #cfdfe9, #fff);
background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#fff)); /* old Webkit */ background-image: -o-linear-gradient(bottom, #cfdfe9, #fff);
background-image: -webkit-linear-gradient(bottom, #cfdfe9, #fff) !important; /* new Webkit */ background-image: linear-gradient(to top, #cfdfe9, #fff);
background-image: linear-gradient(bottom, #cfdfe9, #fff); /* proposed W3C Markup */
} }
.wp-editor-wrap .wp_themeSkin table.mceSplitButton:hover td { .wp-editor-wrap .wp_themeSkin table.mceSplitButton:hover td {
background-image: -ms-linear-gradient(bottom, #cfdfe9, #fff); /* IE10 */ background: #c9c9c9;
background-image: -moz-linear-gradient(bottom, #cfdfe9, #fff); /* Firefox */ background-image: -webkit-gradient(linear, left bottom, left top, from(#bdccd5), to(#000));
background-image: -o-linear-gradient(bottom, #cfdfe9, #fff); /* Opera */ background-image: -webkit-linear-gradient(bottom, #bdccd5, #fff);
background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#fff)); /* old Webkit */ background-image: -moz-linear-gradient(bottom, #bdccd5, #fff);
background-image: -webkit-linear-gradient(bottom, #cfdfe9, #fff) !important; /* new Webkit */ background-image: -o-linear-gradient(bottom, #bdccd5, #fff);
background-image: linear-gradient(bottom, #cfdfe9, #fff); /* proposed W3C Markup */ background-image: linear-gradient(to top, #bdccd5, #fff);
} }
.wp-editor-wrap .wp_themeSkin .mceSplitButtonActive { .wp-editor-wrap .wp_themeSkin .mceSplitButtonActive {
background-color: #B0C8D7; background-color: #b0c8d7;
} }
/* ColorSplitButton */ /* ColorSplitButton */
.wp-editor-wrap .wp_themeSkin div.mceColorSplitMenu table { .wp-editor-wrap .wp_themeSkin div.mceColorSplitMenu table {
background-color: #ebebeb; background-color: #ebebeb;
border-color: #B2B2B2; border-color: #b2b2b2;
} }
.wp-editor-wrap .wp_themeSkin .mceColorSplitMenu a { .wp-editor-wrap .wp_themeSkin .mceColorSplitMenu a {
border-color: #B2B2B2; border-color: #b2b2b2;
} }
.wp-editor-wrap .wp_themeSkin .mceColorSplitMenu a.mceMoreColors { .wp-editor-wrap .wp_themeSkin .mceColorSplitMenu a.mceMoreColors {
@ -1097,25 +1078,24 @@ table.widefat .spam a:hover,
.wp-editor-wrap .wp_themeSkin .mceMenu .mceMenuItemActive { .wp-editor-wrap .wp_themeSkin .mceMenu .mceMenuItemActive {
background-color: #f5f5f5; background-color: #f5f5f5;
} }
.wp-editor-wrap .wp_themeSkin td.mceMenuItemSeparator { .wp-editor-wrap .wp_themeSkin td.mceMenuItemSeparator {
background-color: #aaa; background-color: #aaa;
} }
.wp-editor-wrap .wp_themeSkin .mceMenuItemTitle a { .wp-editor-wrap .wp_themeSkin .mceMenuItemTitle a {
background-color: #ccc; background-color: #ccc;
border-bottom-color: #aaa; border-bottom-color: #aaa;
} }
.wp-editor-wrap .wp_themeSkin .mceMenuItemTitle span.mceText { .wp-editor-wrap .wp_themeSkin .mceMenuItemTitle span.mceText {
color: #000; color: #000;
} }
.wp-editor-wrap .wp_themeSkin .mceMenuItemDisabled .mceText { .wp-editor-wrap .wp_themeSkin .mceMenuItemDisabled .mceText {
color: #888; color: #888;
} }
.wp-editor-wrap .wp_themeSkin tr.mceFirst td.mceToolbar {
background: #cfdfe9 url("../images/ed-bg-vs.gif?ver=20101102") repeat-x scroll left top;
border-color: #cfdfe9;
}
.wp-admin #mceModalBlocker { .wp-admin #mceModalBlocker {
background: #000; background: #000;
} }
@ -1185,53 +1165,31 @@ table.widefat .spam a:hover,
color: #333; color: #333;
} }
.wp-editor-wrap.quicktags-toolbar input { .wp-editor-wrap .quicktags-toolbar input {
color: #464646; color: #464646;
border-color: #d1e5ee; border-color: #b1c6cf;
background-color: #eff8ff; background: #fff;
background-image: -ms-linear-gradient(bottom, #eff8ff, #fff); background-image: -webkit-gradient(linear, left bottom, left top, from(#e5f0f8), to(#fff));
background-image: -moz-linear-gradient(bottom, #eff8ff, #fff); background-image: -webkit-linear-gradient(bottom, #e5f0f8, #fff);
background-image: -o-linear-gradient(bottom, #eff8ff, #fff); background-image: -moz-linear-gradient(bottom, #e5f0f8, #fff);
background-image: -webkit-linear-gradient(bottom, #eff8ff, #fff); background-image: -o-linear-gradient(bottom, #e5f0f8, #fff);
background-image: linear-gradient(bottom, #eff8ff, #fff); background-image: linear-gradient(to top, #e5f0f8, #fff);
}
.wp-editor-wrap .quicktags-toolbar,
.wp-editor-wrap.wp_themeSkin tr.mceFirst td.mceToolbar {
border-bottom: 1px solid #ccc;
background-color: #eff8ff; /* Fallback */
background-image: -ms-linear-gradient(bottom, #cfdfe9, #eff8ff); /* IE10 */
background-image: -moz-linear-gradient(bottom, #cfdfe9, #eff8ff); /* Firefox */
background-image: -o-linear-gradient(bottom, #cfdfe9, #eff8ff); /* Opera */
background-image: -webkit-linear-gradient(bottom, #cfdfe9, #eff8ff); /* new Webkit */
background-image: linear-gradient(bottom, #cfdfe9, #eff8ff); /* proposed W3C Markup */
} }
.wp-editor-wrap .quicktags-toolbar input:hover { .wp-editor-wrap .quicktags-toolbar input:hover {
border-color: #aaa; border-color: #5589aa;
background: #ddd; background: #e0f1ff;
} }
.wp-editor-wrap.wp_themeSkin .mceButton, .wp-editor-wrap .quicktags-toolbar,
.wp-editor-wrap.wp_themeSkin .mceListBox .mceText, .wp-editor-wrap .wp_themeSkin tr.mceFirst td.mceToolbar {
.wp-editor-wrap.wp_themeSkin .mceListBox .mceOpen { border-bottom: 1px solid #ccc;
border-color: #ccc; background: #eff8ff;
background-color: #eff8ff; /* Fallback */ background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#eff8ff));
background-image: -ms-linear-gradient(bottom, #eff8ff, #fff); /* IE10 */ background-image: -webkit-linear-gradient(bottom, #cfdfe9, #eff8ff);
background-image: -moz-linear-gradient(bottom, #eff8ff, #fff); /* Firefox */ background-image: -moz-linear-gradient(bottom, #cfdfe9, #eff8ff);
background-image: -o-linear-gradient(bottom, #eff8ff, #fff); /* Opera */ background-image: -o-linear-gradient(bottom, #cfdfe9, #eff8ff);
background-image: -webkit-gradient(linear, left bottom, left top, from(#eff8ff), to(#fff)); /* old Webkit */ background-image: linear-gradient(to top, #cfdfe9, #eff8ff);
background-image: -webkit-linear-gradient(bottom, #eff8ff, #fff); /* new Webkit */
background-image: linear-gradient(bottom, #eff8ff, #fff); /* proposed W3C Markup */
}
.wp-editor-wrap.wp_themeSkin a.mceButtonEnabled:hover {
border-color: #a0a0a0;
background: #ddd; /* Fallback */
background-image: -ms-linear-gradient(bottom, #cfdfe9, #fff); /* IE10 */
background-image: -moz-linear-gradient(bottom, #cfdfe9, #fff); /* Firefox */
background-image: -o-linear-gradient(bottom, #cfdfe9, #fff); /* Opera */
background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#fff)); /* old Webkit */
background-image: -webkit-linear-gradient(bottom, #cfdfe9, #fff); /* new Webkit */
background-image: linear-gradient(bottom, #cfdfe9, #fff); /* proposed W3C Markup */
} }
/* end TinyMCE */ /* end TinyMCE */
@ -1324,23 +1282,22 @@ table.widefat .spam a:hover,
.folded #adminmenu li.current.menu-top, .folded #adminmenu li.current.menu-top,
#adminmenu .wp-menu-arrow, #adminmenu .wp-menu-arrow,
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head { #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
background-color: #5589AA; /* Fallback */ background: #5589aa;
background-image: -ms-linear-gradient(bottom, #5589AA, #619bbb); /* IE10 */ background-image: -webkit-gradient(linear, left bottom, left top, from(#5589aa), to(#619bbb));
background-image: -moz-linear-gradient(bottom, #5589AA, #619bbb); /* Firefox */ background-image: -webkit-linear-gradient(bottom, #5589aa, #619bbb);
background-image: -o-linear-gradient(bottom, #5589AA, #619bbb); /* Opera */ background-image: -moz-linear-gradient(bottom, #5589aa, #619bbb);
background-image: -webkit-gradient(linear, left bottom, left top, from(#5589AA), to(#619bbb)); /* old Webkit */ background-image: -o-linear-gradient(bottom, #5589aa, #619bbb);
background-image: -webkit-linear-gradient(bottom, #5589AA, #619bbb); /* new Webkit */ background-image: linear-gradient(to top, #5589aa, #619bbb);
background-image: linear-gradient(bottom, #5589AA, #619bbb); /* proposed W3C Markup */
} }
#adminmenu .wp-menu-arrow div { #adminmenu .wp-menu-arrow div {
background-color: #5589AA; /* Fallback */ background: #5589aa;
background-image: -ms-linear-gradient(right bottom, #5589AA, #619bbb); /* IE10 */ background-image: -webkit-gradient(linear, right bottom, left top, from(#5589aa), to(#619bbb));
background-image: -moz-linear-gradient(right bottom, #5589AA, #619bbb); /* Firefox */ background-image: -webkit-linear-gradient(bottom right, #5589aa, #619bbb);
background-image: -o-linear-gradient(right bottom, #5589AA, #619bbb); /* Opera */ background-image: -moz-linear-gradient(bottom right, #5589aa, #619bbb);
background-image: -webkit-gradient(linear, right bottom, left top, from(#5589AA), to(#619bbb)); /* old Webkit */ background-image: -o-linear-gradient(bottom right, #5589aa, #619bbb);
background-image: -webkit-linear-gradient(right bottom, #5589AA, #619bbb); /* new Webkit */ background-image: linear-gradient(to top left, #5589aa, #619bbb);
background-image: linear-gradient(right bottom, #5589AA, #619bbb); /* proposed W3C Markup */
} }
#adminmenu li.wp-not-current-submenu .wp-menu-arrow { #adminmenu li.wp-not-current-submenu .wp-menu-arrow {
@ -1420,20 +1377,23 @@ table.widefat .spam a:hover,
#collapse-button { #collapse-button {
border-color: #d0dfe9; border-color: #d0dfe9;
background-color: #eff8ff; /* Fallback */ background: #eff8ff; /* Fallback */
background-image: -ms-linear-gradient(bottom, #eff8ff, #fff); /* IE10 */ background-image: -webkit-gradient(linear, left bottom, left top, from(#eff8ff), to(#fff));
background-image: -moz-linear-gradient(bottom, #eff8ff, #fff); /* Firefox */ background-image: -webkit-linear-gradient(bottom, #eff8ff, #fff);
background-image: -o-linear-gradient(bottom, #eff8ff, #fff); /* Opera */ background-image: -moz-linear-gradient(bottom, #eff8ff, #fff);
background-image: -webkit-gradient(linear, left bottom, left top, from(#eff8ff), to(#fff)); /* old Webkit */ background-image: -o-linear-gradient(bottom, #eff8ff, #fff);
background-image: -webkit-linear-gradient(bottom, #eff8ff, #fff); /* new Webkit */ background-image: linear-gradient(to top, #eff8ff, #fff);
background-image: linear-gradient(bottom, #eff8ff, #fff); /* proposed W3C Markup */
} }
#collapse-menu:hover #collapse-button { #collapse-menu:hover #collapse-button {
border-color: #A0C3D5; border-color: #A0C3D5;
} }
#collapse-button div { #collapse-button div {
background: transparent url(../images/arrows-vs.png) no-repeat 0 -72px; background: transparent url(../images/arrows-vs.png) no-repeat 0 -72px;
} }
.folded #collapse-button div { .folded #collapse-button div {
background-position: 0 -108px; background-position: 0 -108px;
} }
@ -1447,13 +1407,12 @@ table.widefat .spam a:hover,
#adminmenu li.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu,
#adminmenu li.current.menu-top { #adminmenu li.current.menu-top {
background-color: #5589AA; /* Fallback */ background: #5589aa;
background-image: -ms-linear-gradient(bottom, #5589AA, #619bbb); /* IE10 */ background-image: -webkit-gradient(linear, left bottom, left top, from(#5589aa), to(#619bbb));
background-image: -moz-linear-gradient(bottom, #5589AA, #619bbb); /* Firefox */ background-image: -webkit-linear-gradient(bottom, #5589aa, #619bbb);
background-image: -o-linear-gradient(bottom, #5589AA, #619bbb); /* Opera */ background-image: -moz-linear-gradient(bottom, #5589aa, #619bbb);
background-image: -webkit-gradient(linear, left bottom, left top, from(#5589AA), to(#619bbb)); /* old Webkit */ background-image: -o-linear-gradient(bottom, #5589aa, #619bbb);
background-image: -webkit-linear-gradient(bottom, #5589AA, #619bbb); /* new Webkit */ background-image: linear-gradient(to top, #5589aa, #619bbb);
background-image: linear-gradient(bottom, #5589AA, #619bbb); /* proposed W3C Markup */
} }
#adminmenu li.menu-top li:hover a { #adminmenu li.menu-top li:hover a {
@ -1877,16 +1836,15 @@ table.diff .diff-addedline ins {
/* screen options and help tabs */ /* screen options and help tabs */
#screen-options-link-wrap, #screen-options-link-wrap,
#contextual-help-link-wrap { #contextual-help-link-wrap {
background-color: #eff8ff; /* Fallback */
border-right: 1px solid #D1E5EE; border-right: 1px solid #D1E5EE;
border-left: 1px solid #D1E5EE; border-left: 1px solid #D1E5EE;
border-bottom: 1px solid #D1E5EE; border-bottom: 1px solid #D1E5EE;
background-image: -ms-linear-gradient(bottom, #eff8ff, #eff8ff); /* IE10 */ background: #eff8ff;
background-image: -moz-linear-gradient(bottom, #def1ff, #eff8ff); /* Firefox */ background-image: -webkit-gradient(linear, left bottom, left top, from(#def1ff), to(#eff8ff));
background-image: -o-linear-gradient(bottom, #def1ff, #eff8ff); /* Opera */ background-image: -webkit-linear-gradient(bottom, #def1ff, #eff8ff);
background-image: -webkit-gradient(linear, left bottom, left top, from(#def1ff), to(#eff8ff)); /* old Webkit */ background-image: -moz-linear-gradient(bottom, #def1ff, #eff8ff);
background-image: -webkit-linear-gradient(bottom, #def1ff, #eff8ff); /* new Webkit */ background-image: -o-linear-gradient(bottom, #def1ff, #eff8ff);
background-image: linear-gradient(bottom, #def1ff, #eff8ff); /* proposed W3C Markup */ background-image: linear-gradient(to top, #def1ff, #eff8ff);
} }
#screen-meta-links a.show-settings { #screen-meta-links a.show-settings {
@ -1980,7 +1938,10 @@ fieldset.inline-edit-col-right .inline-edit-col {
.tablenav .tablenav-pages a { .tablenav .tablenav-pages a {
border-color: #d1e5ee; border-color: #d1e5ee;
background: #eee url('../images/menu-bits-vs.gif?ver=20101102') repeat-x scroll left -379px; background: #eee;
-moz-box-shadow: inset 0 1px 0 #fff;
-webkit-box-shadow: inset 0 1px 0 #fff;
box-shadow: inset 0 1px 0 #fff;
} }
.tablenav .tablenav-pages a:hover, .tablenav .tablenav-pages a:hover,
@ -2092,11 +2053,7 @@ body.press-this ul.category-tabs li.tabs a {
} }
div.widgets-sortables, div.widgets-sortables,
#widgets-left .inactive { #widgets-left .inactive,
background-color: #f7fcfe;
border-color: #d0dfe9;
}
#available-widgets .widget-holder { #available-widgets .widget-holder {
background-color: #f7fcfe; background-color: #f7fcfe;
border-color: #d0dfe9; border-color: #d0dfe9;
@ -2108,13 +2065,6 @@ div.widgets-sortables,
.sidebar-name { .sidebar-name {
color: #464646; color: #464646;
background-color: #f7fcfe; /* Fallback */
background-image: -ms-linear-gradient(top, #ECF8FE, #f7fcfe); /* IE10 */
background-image: -moz-linear-gradient(top, #ECF8FE, #f7fcfe); /* Firefox */
background-image: -o-linear-gradient(top, #ECF8FE, #f7fcfe); /* Opera */
background-image: -webkit-gradient(linear, left top, left bottom, from(#ECF8FE), to(#f7fcfe)); /* old Webkit */
background-image: -webkit-linear-gradient(top, #ECF8FE, #f7fcfe); /* new Webkit */
background-image: linear-gradient(top, #ECF8FE, #f7fcfe); /* proposed W3C Markup */
text-shadow: #fff 0 1px 0; text-shadow: #fff 0 1px 0;
border-color: #d0dfe9; border-color: #d0dfe9;
-webkit-box-shadow: inset 0 1px 0 #fff; -webkit-box-shadow: inset 0 1px 0 #fff;
@ -2182,7 +2132,7 @@ div.widgets-sortables,
} }
#post-body { #post-body {
background: #ffffff; background: #fff;
border-top-color: #fff; border-top-color: #fff;
border-bottom-color: #d0dfe9; border-bottom-color: #d0dfe9;
} }
@ -2329,7 +2279,7 @@ div.widgets-sortables,
.about-wrap h1 { .about-wrap h1 {
color: #333; color: #333;
text-shadow: 1px 1px 1px white; text-shadow: 1px 1px 1px #fff;
} }
.about-text { .about-text {
@ -2344,21 +2294,25 @@ div.widgets-sortables,
.about-wrap h2 .nav-tab { .about-wrap h2 .nav-tab {
color: #21759B; color: #21759B;
} }
.about-wrap h2 .nav-tab:hover { .about-wrap h2 .nav-tab:hover {
color: #d54e21; color: #d54e21;
} }
.about-wrap h2 .nav-tab-active, .about-wrap h2 .nav-tab-active,
.about-wrap h2 .nav-tab-active:hover { .about-wrap h2 .nav-tab-active:hover {
color: #333; color: #333;
} }
.about-wrap h2 .nav-tab-active { .about-wrap h2 .nav-tab-active {
text-shadow: 1px 1px 1px white; text-shadow: 1px 1px 1px #fff;
color: #464646; color: #464646;
} }
.about-wrap h3 { .about-wrap h3 {
color: #333; color: #333;
text-shadow: 1px 1px 1px white; text-shadow: 1px 1px 1px #fff;
} }
.about-wrap .feature-section h4 { .about-wrap .feature-section h4 {
@ -2367,7 +2321,7 @@ div.widgets-sortables,
.about-wrap .feature-section img { .about-wrap .feature-section img {
background: #fff; background: #fff;
border: 1px #ccc solid; border: 1px solid #ccc;
-webkit-box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.3 ); -webkit-box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.3 );
box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.3 ); box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.3 );
@ -2386,16 +2340,17 @@ div.widgets-sortables,
} }
.about-wrap h4.wp-people-group { .about-wrap h4.wp-people-group {
text-shadow: 1px 1px 1px white; text-shadow: 1px 1px 1px #fff;
} }
.about-wrap li.wp-person img.gravatar { .about-wrap li.wp-person img.gravatar {
-webkit-box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 ); -webkit-box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );
box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 ); box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );
} }
.about-wrap li.wp-person .title { .about-wrap li.wp-person .title {
color: #464646; color: #464646;
text-shadow: 1px 1px 1px white; text-shadow: 1px 1px 1px #fff;
} }
.freedoms-php .about-wrap ol li { .freedoms-php .about-wrap ol li {
@ -2483,11 +2438,6 @@ div.widgets-sortables,
background: transparent url(../images/arrows-vs.png) no-repeat 6px 7px; background: transparent url(../images/arrows-vs.png) no-repeat 6px 7px;
} }
.rtl .tablenav .tablenav-pages a {
border-color: #d1e5ee;
background: #eee url('../images/menu-bits-rtl-vs.gif?ver=20100610') repeat-x scroll right -379px;
}
.rtl #post-body .misc-pub-section { .rtl #post-body .misc-pub-section {
border-right-color: transparent; border-right-color: transparent;
border-left-color: #d1e5ee; border-left-color: #d1e5ee;
@ -2496,6 +2446,7 @@ div.widgets-sortables,
.rtl .sidebar-name-arrow { .rtl .sidebar-name-arrow {
background: transparent url(../images/arrows-vs.png) no-repeat 5px 9px; background: transparent url(../images/arrows-vs.png) no-repeat 5px 9px;
} }
.rtl .sidebar-name:hover .sidebar-name-arrow { .rtl .sidebar-name:hover .sidebar-name-arrow {
background: transparent url(../images/arrows-dark-vs.png) no-repeat 5px 9px; background: transparent url(../images/arrows-dark-vs.png) no-repeat 5px 9px;
} }

View File

@ -193,13 +193,12 @@ h3.dashboard-widget-title small,
#nav-menu-header, #nav-menu-header,
#nav-menu-footer, #nav-menu-footer,
.menu-item-handle { .menu-item-handle {
background-color: #f1f1f1; /* Fallback */ background: #f1f1f1;
background-image: -ms-linear-gradient(top, #f9f9f9, #ececec); /* IE10 */ background-image: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f9f9f9));
background-image: -moz-linear-gradient(top, #f9f9f9, #ececec); /* Firefox */ background-image: -webkit-linear-gradient(bottom, #ececec, #f9f9f9);
background-image: -o-linear-gradient(top, #f9f9f9, #ececec); /* Opera */ background-image: -moz-linear-gradient(bottom, #ececec, #f9f9f9);
background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec)); /* old Webkit */ background-image: -o-linear-gradient(bottom, #ececec, #f9f9f9);
background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec); /* new Webkit */ background-image: linear-gradient(to top, #ececec, #f9f9f9);
background-image: linear-gradient(top, #f9f9f9, #ececec); /* proposed W3C Markup */
} }
.widget .widget-top, .widget .widget-top,
@ -383,14 +382,24 @@ input[type=submit]:hover {
.button, .button,
.submit input, .submit input,
.button-secondary { .button-secondary {
background: #f2f2f2 url(../images/white-grad.png) repeat-x scroll left top; text-shadow: 0 1px 0 #fff;
text-shadow: rgba(255,255,255,1) 0 1px 0; background: #f2f2f2;
background-image: -webkit-gradient(linear, left bottom, left top, from(#ededed), to(#fff));
background-image: -webkit-linear-gradient(bottom, #ededed, #fff);
background-image: -moz-linear-gradient(bottom, #ededed, #fff);
background-image: -o-linear-gradient(bottom, #ededed, #fff);
background-image: linear-gradient(to top, #ededed, #fff);
} }
.button:active, .button:active,
.submit input:active, .submit input:active,
.button-secondary:active { .button-secondary:active {
background: #eee url(../images/white-grad-active.png) repeat-x scroll left top; background: #eee;
background-image: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
background-image: -webkit-linear-gradient(top, #ededed, #fff);
background-image: -moz-linear-gradient(top, #ededed, #fff);
background-image: -o-linear-gradient(top, #ededed, #fff);
background-image: linear-gradient(to bottom, #ededed, #fff);
} }
input.button-primary, input.button-primary,
@ -399,15 +408,25 @@ a.button-primary {
border-color: #298cba; border-color: #298cba;
font-weight: bold; font-weight: bold;
color: #fff; color: #fff;
background: #21759B url(../images/button-grad.png) repeat-x scroll left top; text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
text-shadow: rgba(0,0,0,0.3) 0 -1px 0; background: #21759b;
background-image: -webkit-gradient(linear, left bottom, left top, from(#227199), to(#298cba));
background-image: -webkit-linear-gradient(bottom, #227199, #298cba);
background-image: -moz-linear-gradient(bottom, #227199, #298cba);
background-image: -o-linear-gradient(bottom, #227199, #298cba);
background-image: linear-gradient(to top, #227199, #298cba);
} }
input.button-primary:active, input.button-primary:active,
button.button-primary:active, button.button-primary:active,
a.button-primary:active { a.button-primary:active {
background: #21759b url(../images/button-grad-active.png) repeat-x scroll left top;
color: #eaf2fa; color: #eaf2fa;
background: #298cba;
background-image: -webkit-gradient(linear, left top, left bottom, from(#227199), to(#298cba));
background-image: -webkit-linear-gradient(top, #227199, #298cba);
background-image: -moz-linear-gradient(top, #227199, #298cba);
background-image: -o-linear-gradient(top, #227199, #298cba);
background-image: linear-gradient(to bottom, #227199, #298cba);
} }
input.button-primary:hover, input.button-primary:hover,
@ -432,8 +451,8 @@ a.button.disabled {
.button-primary-disabled, .button-primary-disabled,
.button-primary[disabled], .button-primary[disabled],
.button-primary:disabled { .button-primary:disabled {
color: #9FD0D5 !important; color: #9fd0d5 !important;
background: #298CBA !important; background: #298cba !important;
} }
a:hover, a:hover,
@ -741,13 +760,12 @@ table.widefat span.spam a,
#widget-list .widget-top, #widget-list .widget-top,
.postbox, .postbox,
.menu-item-settings { .menu-item-settings {
background-color: #f5f5f5; /* Fallback */ background: #f5f5f5;
background-image: -ms-linear-gradient(top, #f9f9f9, #f5f5f5); /* IE10 */ background-image: -webkit-gradient(linear, left bottom, left top, from(#f5f5f5), to(#f9f9f9));
background-image: -moz-linear-gradient(top, #f9f9f9, #f5f5f5); /* Firefox */ background-image: -webkit-linear-gradient(bottom, #f5f5f5, #f9f9f9);
background-image: -o-linear-gradient(top, #f9f9f9, #f5f5f5); /* Opera */ background-image: -moz-linear-gradient(bottom, #f5f5f5, #f9f9f9);
background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#f5f5f5)); /* old Webkit */ background-image: -o-linear-gradient(bottom, #f5f5f5, #f9f9f9);
background-image: -webkit-linear-gradient(top, #f9f9f9, #f5f5f5); /* new Webkit */ background-image: linear-gradient(to top, #f5f5f5, #f9f9f9);
background-image: linear-gradient(top, #f9f9f9, #f5f5f5); /* proposed W3C Markup */
} }
.postbox h3 { .postbox h3 {
@ -767,10 +785,6 @@ table.widefat span.spam a,
background-image: url(../images/date-button.gif); background-image: url(../images/date-button.gif);
} }
#quicktags #ed_link {
color: #00f;
}
#rightnow .youhave { #rightnow .youhave {
background-color: #f0f6fb; background-color: #f0f6fb;
} }
@ -825,16 +839,15 @@ table.widefat span.spam a,
/* screen options and help tabs */ /* screen options and help tabs */
#screen-options-link-wrap, #screen-options-link-wrap,
#contextual-help-link-wrap { #contextual-help-link-wrap {
background-color: #e3e3e3; /* Fallback */
border-right: 1px solid #ccc; border-right: 1px solid #ccc;
border-left: 1px solid #ccc; border-left: 1px solid #ccc;
border-bottom: 1px solid #ccc; border-bottom: 1px solid #ccc;
background-image: -ms-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* IE10 */ background: #e3e3e3;
background-image: -moz-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Firefox */ background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#f1f1f1));
background-image: -o-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Opera */ background-image: -webkit-linear-gradient(bottom, #dfdfdf, #f1f1f1);
background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#f1f1f1)); /* old Webkit */ background-image: -moz-linear-gradient(bottom, #dfdfdf, #f1f1f1);
background-image: -webkit-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* new Webkit */ background-image: -o-linear-gradient(bottom, #dfdfdf, #f1f1f1);
background-image: linear-gradient(bottom, #dfdfdf, #f1f1f1); /* proposed W3C Markup */ background-image: linear-gradient(to top, #dfdfdf, #f1f1f1);
} }
#screen-meta-links a.show-settings { #screen-meta-links a.show-settings {
@ -998,23 +1011,21 @@ table.widefat .spam a:hover,
.folded #adminmenu li.current.menu-top, .folded #adminmenu li.current.menu-top,
#adminmenu .wp-menu-arrow, #adminmenu .wp-menu-arrow,
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head { #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
background-color: #777; /* Fallback */ background: #777;
background-image: -ms-linear-gradient(bottom, #6d6d6d, #808080); /* IE10 */ background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080));
background-image: -moz-linear-gradient(bottom, #6d6d6d, #808080); /* Firefox */ background-image: -webkit-linear-gradient(bottom, #6d6d6d, #808080);
background-image: -o-linear-gradient(bottom, #6d6d6d, #808080); /* Opera */ background-image: -moz-linear-gradient(bottom, #6d6d6d, #808080);
background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080)); /* old Webkit */ background-image: -o-linear-gradient(bottom, #6d6d6d, #808080);
background-image: -webkit-linear-gradient(bottom, #6d6d6d, #808080); /* new Webkit */ background-image: linear-gradient(to top, #6d6d6d, #808080);
background-image: linear-gradient(bottom, #6d6d6d, #808080); /* proposed W3C Markup */
} }
#adminmenu .wp-menu-arrow div { #adminmenu .wp-menu-arrow div {
background-color: #777; /* Fallback */ background: #777;
background-image: -ms-linear-gradient(right bottom, #6d6d6d, #808080); /* IE10 */ background-image: -webkit-gradient(linear, right bottom, left top, from(#6d6d6d), to(#808080));
background-image: -moz-linear-gradient(right bottom, #6d6d6d, #808080); /* Firefox */ background-image: -webkit-linear-gradient(bottom right, #6d6d6d, #808080);
background-image: -o-linear-gradient(right bottom, #6d6d6d, #808080); /* Opera */ background-image: -moz-linear-gradient(bottom right, #6d6d6d, #808080);
background-image: -webkit-gradient(linear, right bottom, left top, from(#6d6d6d), to(#808080)); /* old Webkit */ background-image: -o-linear-gradient(bottom right, #6d6d6d, #808080);
background-image: -webkit-linear-gradient(right bottom, #6d6d6d, #808080); /* new Webkit */ background-image: linear-gradient(to top left, #6d6d6d, #808080);
background-image: linear-gradient(right bottom, #6d6d6d, #808080); /* proposed W3C Markup */
} }
#adminmenu li.wp-not-current-submenu .wp-menu-arrow { #adminmenu li.wp-not-current-submenu .wp-menu-arrow {
@ -1094,13 +1105,12 @@ table.widefat .spam a:hover,
#collapse-button { #collapse-button {
border-color: #ccc; border-color: #ccc;
background-color: #f4f4f4; /* Fallback */ background: #f4f4f4;
background-image: -ms-linear-gradient(bottom, #dfdfdf, #fff); /* IE10 */ background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#fff));
background-image: -moz-linear-gradient(bottom, #dfdfdf, #fff); /* Firefox */ background-image: -webkit-linear-gradient(bottom, #dfdfdf, #fff);
background-image: -o-linear-gradient(bottom, #dfdfdf, #fff); /* Opera */ background-image: -moz-linear-gradient(bottom, #dfdfdf, #fff);
background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#fff)); /* old Webkit */ background-image: -o-linear-gradient(bottom, #dfdfdf, #fff);
background-image: -webkit-linear-gradient(bottom, #dfdfdf, #fff); /* new Webkit */ background-image: linear-gradient(to top, #dfdfdf, #fff);
background-image: linear-gradient(bottom, #dfdfdf, #fff); /* proposed W3C Markup */
} }
#collapse-menu:hover #collapse-button { #collapse-menu:hover #collapse-button {
@ -1124,13 +1134,12 @@ table.widefat .spam a:hover,
#adminmenu li.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu,
#adminmenu li.current.menu-top { #adminmenu li.current.menu-top {
background-color: #777; /* Fallback */ background: #777;
background-image: -ms-linear-gradient(bottom, #6d6d6d, #808080); /* IE10 */ background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080));
background-image: -moz-linear-gradient(bottom, #6d6d6d, #808080); /* Firefox */ background-image: -webkit-linear-gradient(bottom, #6d6d6d, #808080);
background-image: -o-linear-gradient(bottom, #6d6d6d, #808080); /* Opera */ background-image: -moz-linear-gradient(bottom, #6d6d6d, #808080);
background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080)); /* old Webkit */ background-image: -o-linear-gradient(bottom, #6d6d6d, #808080);
background-image: -webkit-linear-gradient(bottom, #6d6d6d, #808080); /* new Webkit */ background-image: linear-gradient(to top, #6d6d6d, #808080);
background-image: linear-gradient(bottom, #6d6d6d, #808080); /* proposed W3C Markup */
} }
#adminmenu li.menu-top li:hover a { #adminmenu li.menu-top li:hover a {
@ -1596,7 +1605,10 @@ fieldset.inline-edit-col-right .inline-edit-col {
.tablenav .tablenav-pages a { .tablenav .tablenav-pages a {
border-color: #e3e3e3; border-color: #e3e3e3;
background: #eee url('../images/menu-bits.gif?ver=20100610') repeat-x scroll left -379px; background: #eee;
-moz-box-shadow: inset 0 1px 0 #fff;
-webkit-box-shadow: inset 0 1px 0 #fff;
box-shadow: inset 0 1px 0 #fff;
} }
.tablenav .tablenav-pages a:hover, .tablenav .tablenav-pages a:hover,
@ -1916,7 +1928,7 @@ div.widgets-sortables,
.about-wrap h1 { .about-wrap h1 {
color: #333; color: #333;
text-shadow: 1px 1px 1px white; text-shadow: 1px 1px 1px #fff;
} }
.about-text { .about-text {
@ -1931,21 +1943,24 @@ div.widgets-sortables,
.about-wrap h2 .nav-tab { .about-wrap h2 .nav-tab {
color: #21759B; color: #21759B;
} }
.about-wrap h2 .nav-tab:hover { .about-wrap h2 .nav-tab:hover {
color: #d54e21; color: #d54e21;
} }
.about-wrap h2 .nav-tab-active, .about-wrap h2 .nav-tab-active,
.about-wrap h2 .nav-tab-active:hover { .about-wrap h2 .nav-tab-active:hover {
color: #333; color: #333;
} }
.about-wrap h2 .nav-tab-active { .about-wrap h2 .nav-tab-active {
text-shadow: 1px 1px 1px white; text-shadow: 1px 1px 1px #fff;
color: #464646; color: #464646;
} }
.about-wrap h3 { .about-wrap h3 {
color: #333; color: #333;
text-shadow: 1px 1px 1px white; text-shadow: 1px 1px 1px #fff;
} }
.about-wrap .feature-section h4 { .about-wrap .feature-section h4 {
@ -1960,7 +1975,7 @@ div.widgets-sortables,
} }
.about-wrap h4.wp-people-group { .about-wrap h4.wp-people-group {
text-shadow: 1px 1px 1px white; text-shadow: 1px 1px 1px #fff;
} }
.about-wrap .point-releases { .about-wrap .point-releases {
@ -1978,14 +1993,16 @@ div.widgets-sortables,
.about-wrap li.wp-person img.gravatar { .about-wrap li.wp-person img.gravatar {
-webkit-box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 ); -webkit-box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );
box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 ); box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );
} }
.about-wrap li.wp-person .title { .about-wrap li.wp-person .title {
color: #464646; color: #464646;
text-shadow: 1px 1px 1px white; text-shadow: 1px 1px 1px #fff;
} }
.freedoms-php .about-wrap ol li { .freedoms-php .about-wrap ol li {
color: #999; color: #999;
} }
.freedoms-php .about-wrap ol p { .freedoms-php .about-wrap ol p {
color: #464646; color: #464646;
@ -2069,11 +2086,6 @@ div.widgets-sortables,
background: transparent url(../images/arrows.png) no-repeat 6px 7px; background: transparent url(../images/arrows.png) no-repeat 6px 7px;
} }
.rtl .tablenav .tablenav-pages a {
border-color: #e3e3e3;
background: #eee url('../images/menu-bits-rtl.gif?ver=20100610') repeat-x scroll right -379px;
}
.rtl #post-body .misc-pub-section { .rtl #post-body .misc-pub-section {
border-right-color: transparent; border-right-color: transparent;
border-left-color: #eee; border-left-color: #eee;

View File

@ -57,13 +57,12 @@ body {
font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif; font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
font-weight: normal; font-weight: normal;
text-shadow: 0 1px 0 #fff; text-shadow: 0 1px 0 #fff;
background: #f5f5f5;
background-color: #f5f5f5; background-image: -webkit-gradient(linear, left bottom, left top, from(#eee), to(#f5f5f5));
background-image: -webkit-linear-gradient( top, #f5f5f5, #eee ); background-image: -webkit-linear-gradient(bottom, #eee, #f5f5f5);
background-image: -moz-linear-gradient( top, #f5f5f5, #eee ); background-image: -moz-linear-gradient(bottom, #eee, #f5f5f5);
background-image: -ms-linear-gradient( top, #f5f5f5, #eee ); background-image: -o-linear-gradient(bottom, #eee, #f5f5f5);
background-image: -o-linear-gradient( top, #f5f5f5, #eee ); background-image: linear-gradient(to top, #eee, #f5f5f5);
background-image: linear-gradient( top, #f5f5f5, #eee );
} }
.control-section:hover .customize-section-title, .control-section:hover .customize-section-title,
@ -71,12 +70,12 @@ body {
.control-section.open .customize-section-title { .control-section.open .customize-section-title {
color: #fff; color: #fff;
text-shadow: 0 -1px 0 #333; text-shadow: 0 -1px 0 #333;
background-color: #808080; background: #808080;
background-image: -webkit-linear-gradient( top, #808080, #6d6d6d ); background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080));
background-image: -moz-linear-gradient( top, #808080, #6d6d6d ); background-image: -webkit-linear-gradient(bottom, #6d6d6d, #808080);
background-image: -ms-linear-gradient( top, #808080, #6d6d6d ); background-image: -moz-linear-gradient(bottom, #6d6d6d, #808080);
background-image: -o-linear-gradient( top, #808080, #6d6d6d ); background-image: -o-linear-gradient(bottom, #6d6d6d, #808080);
background-image: linear-gradient( top, #808080, #6d6d6d ); background-image: linear-gradient(to top, #6d6d6d, #808080);
} }
.control-section.open .customize-section-title { .control-section.open .customize-section-title {
@ -528,10 +527,8 @@ body.cheatin p {
margin: 0 auto; margin: 0 auto;
padding: 2em; padding: 2em;
font-size: 14px; font-size: 14px;
background: #fff; background: #fff;
border: 1px solid #dfdfdf; border: 1px solid #dfdfdf;
-webkit-border-radius: 3px; -webkit-border-radius: 3px;
border-radius: 3px; border-radius: 3px;
} }

View File

@ -15,12 +15,12 @@ body {
} }
a { a {
color: #21759B; color: #21759b;
text-decoration: none; text-decoration: none;
} }
a:hover { a:hover {
color: #D54E21; color: #d54e21;
} }
h1 { h1 {
@ -71,7 +71,9 @@ abbr {
padding: 0; padding: 0;
} }
.submit input, .button, .button-secondary { .submit input,
.button,
.button-secondary {
font-family: sans-serif; font-family: sans-serif;
text-decoration: none; text-decoration: none;
font-size: 14px !important; font-size: 14px !important;
@ -81,23 +83,34 @@ abbr {
border: 1px solid #bbb; border: 1px solid #bbb;
color: #464646; color: #464646;
-webkit-border-radius: 15px; -webkit-border-radius: 15px;
border-radius: 15px; border-radius: 15px;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box; -webkit-box-sizing: content-box;
box-sizing: content-box; -moz-box-sizing: content-box;
box-sizing: content-box;
background: #f2f2f2;
background-image: -webkit-gradient(linear, left bottom, left top, from(#ededed), to(#fff));
background-image: -webkit-linear-gradient(bottom, #ededed, #fff);
background-image: -moz-linear-gradient(bottom, #ededed, #fff);
background-image: -o-linear-gradient(bottom, #ededed, #fff);
background-image: linear-gradient(to top, #ededed, #fff);
} }
.button:hover, .button-secondary:hover, .submit input:hover { .button:hover,
.button-secondary:hover,
.submit input:hover {
color: #000; color: #000;
border-color: #666; border-color: #666;
} }
.button, .submit input, .button-secondary { .button:active,
background: #f2f2f2 url(../images/white-grad.png) repeat-x scroll left top; .submit input:active,
} .button-secondary:active {
background: #eee;
.button:active, .submit input:active, .button-secondary:active { background-image: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
background: #eee url(../images/white-grad-active.png) repeat-x scroll left top; background-image: -webkit-linear-gradient(top, #ededed, #fff);
background-image: -moz-linear-gradient(top, #ededed, #fff);
background-image: -o-linear-gradient(top, #ededed, #fff);
background-image: linear-gradient(to bottom, #ededed, #fff);
} }
textarea { textarea {
@ -145,7 +158,7 @@ textarea {
line-height: 20px; line-height: 20px;
font-size: 15px; font-size: 15px;
padding: 2px; padding: 2px;
border: 1px #DFDFDF solid; border: 1px #dfdfdf solid;
-webkit-border-radius: 3px; -webkit-border-radius: 3px;
border-radius: 3px; border-radius: 3px;
font-family: sans-serif; font-family: sans-serif;

View File

@ -3759,12 +3759,12 @@ abbr.required {
overflow: hidden; overflow: hidden;
margin-bottom: 2px; margin-bottom: 2px;
border: 1px solid #d1d1d1; border: 1px solid #d1d1d1;
background: #fff; background: #f7f7f7;
background-image: linear-gradient(bottom, rgb(255,255,255) 0%, rgb(247,247,247) 100%); background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#f7f7f7));
background-image: -o-linear-gradient(bottom, rgb(255,255,255) 0%, rgb(247,247,247) 100%); background-image: -webkit-linear-gradient(bottom, #fff, #f7f7f7);
background-image: -moz-linear-gradient(bottom, rgb(255,255,255) 0%, rgb(247,247,247) 100%); background-image: -moz-linear-gradient(bottom, #fff, #f7f7f7);
background-image: -webkit-linear-gradient(bottom, rgb(255,255,255) 0%, rgb(247,247,247) 100%); background-image: -o-linear-gradient(bottom, #fff, #f7f7f7);
background-image: -ms-linear-gradient(bottom, rgb(255,255,255) 0%, rgb(247,247,247) 100%); background-image: linear-gradient(to top, #fff, #f7f7f7);
-webkit-border-radius: 3px; -webkit-border-radius: 3px;
border-radius: 3px; border-radius: 3px;
-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.1); -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
@ -3776,12 +3776,12 @@ abbr.required {
width: 0; width: 0;
height: 100%; height: 100%;
margin-top: -24px; margin-top: -24px;
background-color: #83B4D8; background-color: #8cc1e9;
background-image: linear-gradient(bottom, rgb(114,167,207) 0%, rgb(144,197,238) 100%); background-image: -webkit-gradient(linear, left bottom, left top, from(#72a7cf), to(#8cc1e9));
background-image: -o-linear-gradient(bottom, rgb(114,167,207) 0%, rgb(144,197,238) 100%); background-image: -webkit-linear-gradient(bottom, #72a7cf, #8cc1e9);
background-image: -moz-linear-gradient(bottom, rgb(114,167,207) 0%, rgb(144,197,238) 100%); background-image: -moz-linear-gradient(bottom, #72a7cf, #8cc1e9);
background-image: -webkit-linear-gradient(bottom, rgb(114,167,207) 0%, rgb(144,197,238) 100%); background-image: -o-linear-gradient(bottom, #72a7cf, #8cc1e9);
background-image: -ms-linear-gradient(bottom, rgb(114,167,207) 0%, rgb(144,197,238) 100%); background-image: linear-gradient(to top, #72a7cf, #8cc1e9);
-webkit-border-radius: 3px; -webkit-border-radius: 3px;
border-radius: 3px; border-radius: 3px;
-webkit-box-shadow: 0 0 3px rgba(0,0,0,0.3); -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.3);
@ -4726,7 +4726,6 @@ h2 .nav-tab {
#pass-strength-result.short, #pass-strength-result.short,
.button-highlighted, .button-highlighted,
input.button-highlighted, input.button-highlighted,
#quicktags #ed_strong,
#ed_reply_toolbar #ed_reply_strong, #ed_reply_toolbar #ed_reply_strong,
.item-controls .item-order a, .item-controls .item-order a,
.feature-filter .feature-name { .feature-filter .feature-name {
@ -4854,13 +4853,12 @@ input.button-highlighted,
position: relative; position: relative;
cursor: move; cursor: move;
color: #333; color: #333;
background: #dfdfdf; background: #e6e6e6;
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.07, #e6e6e6), color-stop(0.77, #d8d8d8)); background-image: -webkit-gradient(linear, left bottom, left top, color-stop(7%, #e6e6e6), color-stop(77%, #d8d8d8));
background-image: -webkit-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%); background-image: -webkit-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
background-image: -moz-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%); background-image: -moz-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
background-image: -ms-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%); background-image: -o-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
background-image: -o-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%); background-image: linear-gradient(to top, #e6e6e6 7%, #d8d8d8 77%);
background-image: linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
-webkit-border-radius: 5px; -webkit-border-radius: 5px;
border-radius: 5px; border-radius: 5px;
border: 1px solid #b4b4b4; border: 1px solid #b4b4b4;
@ -6877,13 +6875,12 @@ a.rsswidget {
} }
#menu-to-edit .menu-item-invalid .menu-item-handle { #menu-to-edit .menu-item-invalid .menu-item-handle {
background-color: #f6c9cc; /* Fallback */ background: #f6c9cc;
background-image: -ms-linear-gradient(bottom, #f6c9cc, #fdf8ff); /* IE10 */ background-image: -webkit-gradient(linear, left bottom, left top, from(#f6c9cc), to(#fdf8ff));
background-image: -moz-linear-gradient(bottom, #f6c9cc, #fdf8ff); /* Firefox */ background-image: -webkit-linear-gradient(bottom, #f6c9cc, #fdf8ff);
background-image: -o-linear-gradient(bottom, #f6c9cc, #fdf8ff); /* Opera */ background-image: -moz-linear-gradient(bottom, #f6c9cc, #fdf8ff);
background-image: -webkit-gradient(linear, left bottom, left top, from(#f6c9cc), to(#fdf8ff)); /* old Webkit */ background-image: -o-linear-gradient(bottom, #f6c9cc, #fdf8ff);
background-image: -webkit-linear-gradient(bottom, #f6c9cc, #fdf8ff); /* new Webkit */ background-image: linear-gradient(to top, #f6c9cc, #fdf8ff);
background-image: linear-gradient(bottom, #f6c9cc, #fdf8ff); /* proposed W3C Markup */
} }
.menu-item-edit-active .menu-item-handle { .menu-item-edit-active .menu-item-handle {

View File

@ -38,14 +38,12 @@
width: 100%; width: 100%;
min-width: 600px; /* match the min-width of the body in wp-admin.css */ min-width: 600px; /* match the min-width of the body in wp-admin.css */
z-index: 99999; z-index: 99999;
background: #464646;
background-color: #464646; /* Fallback */ background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #373737), color-stop(18%, #464646));
background-image: -ms-linear-gradient(bottom, #373737, #464646 5px); /* IE10 */ background-image: -webkit-linear-gradient(bottom, #373737 0, #464646 5px);
background-image: -moz-linear-gradient(bottom, #373737, #464646 5px); /* Firefox */ background-image: -moz-linear-gradient(bottom, #373737 0, #464646 5px);
background-image: -o-linear-gradient(bottom, #373737, #464646 5px); /* Opera */ background-image: -o-linear-gradient(bottom, #373737 0, #464646 5px);
background-image: -webkit-gradient(linear, left bottom, left top, from(#373737), to(#464646)); /* old Webkit */ background-image: linear-gradient(to top, #373737 0, #464646 5px);
background-image: -webkit-linear-gradient(bottom, #373737, #464646 5px); /* new Webkit */
background-image: linear-gradient(bottom, #373737, #464646 5px); /* proposed W3C Markup */
} }
#wpadminbar .ab-sub-wrapper, #wpadminbar .ab-sub-wrapper,
@ -199,13 +197,12 @@
#wpadminbar .ab-top-menu > li > .ab-item:focus, #wpadminbar .ab-top-menu > li > .ab-item:focus,
#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus { #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus {
color: #fafafa; color: #fafafa;
background-color: #3a3a3a; /* Fallback */ background: #222;
background-image: -ms-linear-gradient(bottom, #3a3a3a, #222); /* IE10 */ background-image: -webkit-gradient(linear, left bottom, left top, from(#3a3a3a), to(#222));
background-image: -moz-linear-gradient(bottom, #3a3a3a, #222); /* Firefox */ background-image: -webkit-linear-gradient(bottom, #3a3a3a, #222);
background-image: -o-linear-gradient(bottom, #3a3a3a, #222); /* Opera */ background-image: -moz-linear-gradient(bottom, #3a3a3a, #222);
background-image: -webkit-gradient(linear, left bottom, left top, from(#3a3a3a), to(#222)); /* old Webkit */ background-image: -o-linear-gradient(bottom, #3a3a3a, #222);
background-image: -webkit-linear-gradient(bottom, #3a3a3a, #222); /* new Webkit */ background-image: linear-gradient(to top, #3a3a3a, #222);
background-image: linear-gradient(bottom, #3a3a3a, #222); /* proposed W3C Markup */
} }
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
@ -297,13 +294,12 @@
#wpadminbar .ab-top-secondary { #wpadminbar .ab-top-secondary {
float: right; float: right;
background-color: #464646; /* Fallback */ background: #464646;
background-image: -ms-linear-gradient(bottom, #373737, #464646 5px); /* IE10 */ background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #373737), color-stop(18%, #464646));
background-image: -moz-linear-gradient(bottom, #373737, #464646 5px); /* Firefox */ background-image: -webkit-linear-gradient(bottom, #373737 0, #464646 5px);
background-image: -o-linear-gradient(bottom, #373737, #464646 5px); /* Opera */ background-image: -moz-linear-gradient(bottom, #373737 0, #464646 5px);
background-image: -webkit-gradient(linear, left bottom, left top, from(#373737), to(#464646)); /* old Webkit */ background-image: -o-linear-gradient(bottom, #373737 0, #464646 5px);
background-image: -webkit-linear-gradient(bottom, #373737, #464646 5px); /* new Webkit */ background-image: linear-gradient(to top, #373737 0, #464646 5px);
background-image: linear-gradient(bottom, #373737, #464646 5px); /* proposed W3C Markup */
} }
#wpadminbar ul li:last-child, #wpadminbar ul li:last-child,

View File

@ -287,7 +287,7 @@
.wp_themeSkin select.mceListBox { .wp_themeSkin select.mceListBox {
font-family: Arial, "Bitstream Vera Sans", Helvetica, Verdana, sans-serif; font-family: Arial, "Bitstream Vera Sans", Helvetica, Verdana, sans-serif;
font-size: 12px; font-size: 12px;
border-color: #B2B2B2; border-color: #b2b2b2;
background-color: #fff; background-color: #fff;
} }
@ -901,24 +901,22 @@
.wp_themeSkin .mceListBox .mceText, .wp_themeSkin .mceListBox .mceText,
.wp_themeSkin .mceListBox .mceOpen { .wp_themeSkin .mceListBox .mceOpen {
border-color: #ccc; border-color: #ccc;
background-color: #eee; /* Fallback */ background: #eee;
background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */ background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff));
background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */ background-image: -webkit-linear-gradient(bottom, #ddd, #fff);
background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */ background-image: -moz-linear-gradient(bottom, #ddd, #fff);
background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */ background-image: -o-linear-gradient(bottom, #ddd, #fff);
background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */ background-image: linear-gradient(to top, #ddd, #fff);
background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */
} }
.wp_themeSkin a.mceButtonEnabled:hover { .wp_themeSkin a.mceButtonEnabled:hover {
border-color: #a0a0a0; border-color: #a0a0a0;
background: #ddd; /* Fallback */ background: #eee;
background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */ background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff));
background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */ background-image: -webkit-linear-gradient(bottom, #ccc, #fff);
background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */ background-image: -moz-linear-gradient(bottom, #ccc, #fff);
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */ background-image: -o-linear-gradient(bottom, #ccc, #fff);
background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */ background-image: linear-gradient(to top, #ccc, #fff);
background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */
} }
.wp_themeSkin a.mceButton:active, .wp_themeSkin a.mceButton:active,
@ -927,14 +925,13 @@
.wp_themeSkin a.mceButtonActive, .wp_themeSkin a.mceButtonActive,
.wp_themeSkin a.mceButtonActive:active, .wp_themeSkin a.mceButtonActive:active,
.wp_themeSkin a.mceButtonActive:hover { .wp_themeSkin a.mceButtonActive:hover {
background-color: #ddd; /* Fallback */
background-image: -ms-linear-gradient(bottom, #eee, #bbb); /* IE10 */
background-image: -moz-linear-gradient(bottom, #eee, #bbb); /* Firefox */
background-image: -o-linear-gradient(bottom, #eee, #bbb); /* Opera */
background-image: -webkit-gradient(linear, left bottom, left top, from(#eee), to(#bbb)); /* old Webkit */
background-image: -webkit-linear-gradient(bottom, #eee, #bbb); /* new Webkit */
background-image: linear-gradient(bottom, #eee, #bbb); /* proposed W3C Markup */
border-color: #909090; border-color: #909090;
background: #ddd;
background-image: -webkit-gradient(linear, left bottom, left top, from(#eee), to(#bbb));
background-image: -webkit-linear-gradient(bottom, #eee, #bbb);
background-image: -moz-linear-gradient(bottom, #eee, #bbb);
background-image: -o-linear-gradient(bottom, #eee, #bbb);
background-image: linear-gradient(to top, #eee, #bbb);
} }
.wp_themeSkin .mceButtonDisabled { .wp_themeSkin .mceButtonDisabled {
@ -960,13 +957,12 @@
.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen, .wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
.wp_themeSkin .mceListBoxHover .mceOpen { .wp_themeSkin .mceListBoxHover .mceOpen {
border-color: #909090; border-color: #909090;
background-color: #eee; /* Fallback */ background: #eee;
background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */ background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff));
background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */ background-image: -webkit-linear-gradient(bottom, #ccc, #fff);
background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */ background-image: -moz-linear-gradient(bottom, #ccc, #fff);
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */ background-image: -o-linear-gradient(bottom, #ccc, #fff);
background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */ background-image: linear-gradient(to top, #ccc, #fff);
background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */
} }
/* SplitButton */ /* SplitButton */
@ -983,22 +979,21 @@
} }
.wp_themeSkin table.mceSplitButton td { .wp_themeSkin table.mceSplitButton td {
background-color: #eee; /* Fallback */ background: #eee;
background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */ background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff));
background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */ background-image: -webkit-linear-gradient(bottom, #ddd, #fff);
background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */ background-image: -moz-linear-gradient(bottom, #ddd, #fff);
background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */ background-image: -o-linear-gradient(bottom, #ddd, #fff);
background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */ background-image: linear-gradient(to top, #ddd, #fff);
background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */
} }
.wp_themeSkin table.mceSplitButton:hover td { .wp_themeSkin table.mceSplitButton:hover td {
background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */ background: #eee;
background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */ background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff));
background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */ background-image: -webkit-linear-gradient(bottom, #ccc, #fff);
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */ background-image: -moz-linear-gradient(bottom, #ccc, #fff);
background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */ background-image: -o-linear-gradient(bottom, #ccc, #fff);
background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */ background-image: linear-gradient(to top, #ccc, #fff);
} }
.wp_themeSkin .mceSplitButtonActive { .wp_themeSkin .mceSplitButtonActive {
@ -1057,12 +1052,12 @@
.quicktags-toolbar, .quicktags-toolbar,
.wp_themeSkin tr.mceFirst td.mceToolbar { .wp_themeSkin tr.mceFirst td.mceToolbar {
border-bottom: 1px solid #ccc; border-bottom: 1px solid #ccc;
background-color: #e9e9e9; /* Fallback */ background: #e9e9e9;
background-image: -ms-linear-gradient(bottom, #ddd, #e9e9e9); /* IE10 */ background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#e9e9e9));
background-image: -moz-linear-gradient(bottom, #ddd, #e9e9e9); /* Firefox */ background-image: -webkit-linear-gradient(bottom, #ddd, #e9e9e9);
background-image: -o-linear-gradient(bottom, #ddd, #e9e9e9); /* Opera */ background-image: -moz-linear-gradient(bottom, #ddd, #e9e9e9);
background-image: -webkit-linear-gradient(bottom, #ddd, #e9e9e9); /* new Webkit */ background-image: -o-linear-gradient(bottom, #ddd, #e9e9e9);
background-image: linear-gradient(bottom, #ddd, #e9e9e9); /* proposed W3C Markup */ background-image: linear-gradient(to top, #ddd, #e9e9e9);
} }
.wp-switch-editor { .wp-switch-editor {
@ -1144,17 +1139,17 @@ html[dir="rtl"] .wp-switch-editor {
display: inline-block; display: inline-block;
min-width: 26px; min-width: 26px;
padding: 2px 4px; padding: 2px 4px;
font: 12px/18px Arial,Helvetica,sans-serif normal; font: 12px/18px Arial, Helvetica, sans-serif normal;
color: #464646; color: #464646;
border: 1px solid #C3C3C3; border: 1px solid #c3c3c3;
-webkit-border-radius: 3px; -webkit-border-radius: 3px;
border-radius: 3px; border-radius: 3px;
background-color: #eee; background: #eee;
background-image: -ms-linear-gradient(bottom, #e3e3e3, #fff); background-image: -webkit-gradient(linear, left bottom, left top, from(#e3e3e3), to(#fff));
background-image: -moz-linear-gradient(bottom, #e3e3e3, #fff);
background-image: -o-linear-gradient(bottom, #e3e3e3, #fff);
background-image: -webkit-linear-gradient(bottom, #e3e3e3, #fff); background-image: -webkit-linear-gradient(bottom, #e3e3e3, #fff);
background-image: linear-gradient(bottom, #e3e3e3, #fff); background-image: -moz-linear-gradient(bottom, #e3e3e3, #fff);
background-image: -o-linear-gradient(bottom, #e3e3e3, #fff);
background-image: linear-gradient(to top, #e3e3e3, #fff);
} }
.quicktags-toolbar input:hover { .quicktags-toolbar input:hover {
@ -1818,8 +1813,12 @@ RTL
color: #777; color: #777;
text-shadow: 0 1px 0 #fff; text-shadow: 0 1px 0 #fff;
background-color: #f4f4f4; background-color: #f4f4f4;
background-image: -moz-linear-gradient(bottom, #e4e4e4, #f9f9f9); background: #f4f4f4;
background-image: -webkit-gradient(linear, left bottom, left top, from(#e4e4e4), to(#f9f9f9)); background-image: -webkit-gradient(linear, left bottom, left top, from(#e4e4e4), to(#f9f9f9));
background-image: -webkit-linear-gradient(bottom, #e4e4e4, #f9f9f9);
background-image: -moz-linear-gradient(bottom, #e4e4e4, #f9f9f9);
background-image: -o-linear-gradient(bottom, #e4e4e4, #f9f9f9);
background-image: linear-gradient(to top, #e4e4e4, #f9f9f9);
} }
#wp-fullscreen-modes a:hover, #wp-fullscreen-modes a:hover,
@ -1827,9 +1826,12 @@ RTL
.wp-tmce-mode #wp-fullscreen-modes a:first-child { .wp-tmce-mode #wp-fullscreen-modes a:first-child {
color: #333; color: #333;
border-color: #999; border-color: #999;
background-color: #eee; background: #eee;
background-image: -moz-linear-gradient(bottom, #f9f9f9, #e0e0e0); background-image: -webkit-gradient(linear, left top, left bottom, from(#e4e4e4), to(#f9f9f9));
background-image: -webkit-gradient(linear, left bottom, left top, from(#f9f9f9), to(#e0e0e0)); background-image: -webkit-linear-gradient(top, #e4e4e4, #f9f9f9);
background-image: -moz-linear-gradient(top, #e4e4e4, #f9f9f9);
background-image: -o-linear-gradient(top, #e4e4e4, #f9f9f9);
background-image: linear-gradient(to bottom, #e4e4e4, #f9f9f9);
} }
#wp-fullscreen-modes a:first-child { #wp-fullscreen-modes a:first-child {
@ -1922,13 +1924,12 @@ RTL
#fullscreen-topbar { #fullscreen-topbar {
border-bottom-color: #DFDFDF; border-bottom-color: #DFDFDF;
background-color: #f1f1f1; /* Fallback */ background: #f1f1f1;
background-image: -ms-linear-gradient(top, #f9f9f9, #ececec); /* IE10 */ background-image: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f9f9f9));
background-image: -moz-linear-gradient(top, #f9f9f9, #ececec); /* Firefox */ background-image: -webkit-linear-gradient(bottom, #ececec, #f9f9f9);
background-image: -o-linear-gradient(top, #f9f9f9, #ececec); /* Opera */ background-image: -moz-linear-gradient(bottom, #ececec, #f9f9f9);
background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec)); /* old Webkit */ background-image: -o-linear-gradient(bottom, #ececec, #f9f9f9);
background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec); /* new Webkit */ background-image: linear-gradient(to top, #ececec, #f9f9f9);
background-image: linear-gradient(top, #f9f9f9, #ececec); /* proposed W3C Markup */
} }
/* =CSS 3 transitions /* =CSS 3 transitions

View File

@ -29,12 +29,12 @@
color: #fff; color: #fff;
border-radius: 3px 3px 0 0; border-radius: 3px 3px 0 0;
text-shadow: 0 -1px 0 rgba(0,0,0,0.3); text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
background-color: #8cc1e9; background: #8cc1e9;
background-image: -webkit-linear-gradient(bottom, rgb(114,167,207) 0%, rgb(140,193,233) 100%); background-image: -webkit-gradient(linear, left bottom, left top, from(#72a7cf), to(#8cc1e9));
background-image: -moz-linear-gradient(bottom, rgb(114,167,207) 0%, rgb(140,193,233) 100%); background-image: -webkit-linear-gradient(bottom, #72a7cf, #8cc1e9);
background-image: -ms-linear-gradient(bottom, rgb(114,167,207) 0%, rgb(140,193,233) 100%); background-image: -moz-linear-gradient(bottom, #72a7cf, #8cc1e9);
background-image: -o-linear-gradient(bottom, rgb(114,167,207) 0%, rgb(140,193,233) 100%); background-image: -o-linear-gradient(bottom, #72a7cf, #8cc1e9);
background-image: linear-gradient(bottom, rgb(114,167,207) 0%, rgb(140,193,233) 100%); background-image: linear-gradient(to top, #72a7cf, #8cc1e9);
} }
.wp-pointer-content h3:before { .wp-pointer-content h3:before {