mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-10 18:37:58 +01:00
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:
parent
59eb150fdc
commit
853df37fe8
@ -202,19 +202,18 @@ h3.dashboard-widget-title small,
|
||||
#nav-menu-footer,
|
||||
.menu-item-handle,
|
||||
#fullscreen-topbar {
|
||||
background-color: #f5fafd; /* Fallback */
|
||||
background-image: -ms-linear-gradient(top, #f7fcfe, #eff8ff); /* IE10 */
|
||||
background-image: -moz-linear-gradient(top, #f7fcfe, #eff8ff); /* Firefox */
|
||||
background-image: -o-linear-gradient(top, #f7fcfe, #eff8ff); /* Opera */
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#f7fcfe), to(#eff8ff)); /* old Webkit */
|
||||
background-image: -webkit-linear-gradient(top, #f7fcfe, #eff8ff); /* new Webkit */
|
||||
background-image: linear-gradient(top, #f7fcfe, #eff8ff); /* proposed W3C Markup */
|
||||
background: #f5fafd;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#eff8ff), to(#f7fcfe));
|
||||
background-image: -webkit-linear-gradient(bottom, #eff8ff, #f7fcfe);
|
||||
background-image: -moz-linear-gradient(bottom, #eff8ff, #f7fcfe);
|
||||
background-image: -o-linear-gradient(bottom, #eff8ff, #f7fcfe);
|
||||
background-image: linear-gradient(to top, #eff8ff, #f7fcfe);
|
||||
}
|
||||
|
||||
.widget .widget-top,
|
||||
.postbox h3,
|
||||
.stuffbox h3 {
|
||||
border-bottom-color: #D1E5EE;
|
||||
border-bottom-color: #d1e5ee;
|
||||
text-shadow: #fff 0 1px 0;
|
||||
-webkit-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-wrap label {
|
||||
color: #222;
|
||||
text-shadow: #fff 0 1px 0;
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
}
|
||||
|
||||
.description,
|
||||
@ -392,14 +391,24 @@ input[type=submit]:hover {
|
||||
.button,
|
||||
.submit input,
|
||||
.button-secondary {
|
||||
background: #f2f2f2 url(../images/white-grad.png) repeat-x scroll left top;
|
||||
text-shadow: rgba(255,255,255,1) 0 1px 0;
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
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,
|
||||
.submit input: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,
|
||||
@ -408,15 +417,25 @@ a.button-primary {
|
||||
border-color: #298cba;
|
||||
font-weight: bold;
|
||||
color: #fff;
|
||||
background: #21759B url(../images/button-grad.png) repeat-x scroll left top;
|
||||
text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
|
||||
text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
|
||||
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,
|
||||
button.button-primary:active,
|
||||
a.button-primary:active {
|
||||
background: #21759b url(../images/button-grad-active.png) repeat-x scroll left top;
|
||||
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,
|
||||
@ -441,8 +460,8 @@ a.button.disabled {
|
||||
.button-primary-disabled,
|
||||
.button-primary[disabled],
|
||||
.button-primary:disabled {
|
||||
color: #9FD0D5 !important;
|
||||
background: #298CBA !important;
|
||||
color: #9fd0d5 !important;
|
||||
background: #298cba !important;
|
||||
}
|
||||
|
||||
a:hover,
|
||||
@ -633,16 +652,6 @@ input.readonly, textarea.readonly {
|
||||
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 {
|
||||
background-color: #fffbcc;
|
||||
}
|
||||
@ -868,21 +877,6 @@ table.widefat .spam a:hover,
|
||||
}
|
||||
|
||||
/* 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 {
|
||||
border-color: #d0dfe9;
|
||||
}
|
||||
@ -910,6 +904,15 @@ table.widefat .spam a:hover,
|
||||
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 */
|
||||
.wp-editor-wrap .wp_themeSkin table.mceLayout {
|
||||
border-color: #bed1dd #bed1dd #d0dfe9;
|
||||
@ -932,26 +935,26 @@ table.widefat .spam a:hover,
|
||||
}
|
||||
|
||||
/* Button */
|
||||
.wp-editor-wrap .wp_themeSkin .mceButton {
|
||||
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 .mceButton,
|
||||
.wp-editor-wrap .wp_themeSkin .mceListBox .mceText,
|
||||
.wp-editor-wrap .wp_themeSkin .mceListBox .mceOpen {
|
||||
border-color: #b0c8d7;
|
||||
background: #cfdfe9;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#fff));
|
||||
background-image: -webkit-linear-gradient(bottom, #cfdfe9, #fff);
|
||||
background-image: -moz-linear-gradient(bottom, #cfdfe9, #fff);
|
||||
background-image: -o-linear-gradient(bottom, #cfdfe9, #fff);
|
||||
background-image: linear-gradient(to top, #cfdfe9, #fff);
|
||||
}
|
||||
|
||||
.wp-editor-wrap .wp_themeSkin a.mceButtonEnabled:hover {
|
||||
border-color: #5589AA !important;
|
||||
background-color: #c9c9c9; /* Fallback */
|
||||
background-image: -ms-linear-gradient(bottom, #bdccd5, #fff); /* IE10 */
|
||||
background-image: -moz-linear-gradient(bottom, #bdccd5, #fff); /* Firefox */
|
||||
background-image: -o-linear-gradient(bottom, #bdccd5, #fff); /* Opera */
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#bdccd5), to(#fff)); /* old Webkit */
|
||||
background-image: -webkit-linear-gradient(bottom, #bdccd5, #fff) !important; /* new Webkit */
|
||||
background-image: linear-gradient(bottom, #bdccd5, #fff); /* proposed W3C Markup */
|
||||
border-color: #5589aa;
|
||||
background: #c9c9c9;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#bdccd5), to(#000));
|
||||
background-image: -webkit-linear-gradient(bottom, #bdccd5, #fff);
|
||||
background-image: -moz-linear-gradient(bottom, #bdccd5, #fff);
|
||||
background-image: -o-linear-gradient(bottom, #bdccd5, #fff);
|
||||
background-image: linear-gradient(to top, #bdccd5, #fff);
|
||||
}
|
||||
|
||||
.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:active,
|
||||
.wp-editor-wrap .wp_themeSkin a.mceButtonActive:hover {
|
||||
background: #B0C8D7 !important;
|
||||
background-image: -ms-linear-gradient(bottom, #fff, #cfdfe9); /* IE10 */
|
||||
background-image: -moz-linear-gradient(bottom, #fff, #cfdfe9); /* Firefox */
|
||||
background-image: -o-linear-gradient(bottom, #fff, #cfdfe9); /* Opera */
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#cfdfe9)); /* old Webkit */
|
||||
background-image: -webkit-linear-gradient(bottom, #fff, #cfdfe9) !important; /* new Webkit */
|
||||
background-image: linear-gradient(bottom, #fff, #cfdfe9); /* proposed W3C Markup */
|
||||
border-color: #5589AA !important;
|
||||
background: #b0c8d7;
|
||||
border-color: #5589aa;
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#cfdfe9), to(#fff));
|
||||
background-image: -webkit-linear-gradient(top, #cfdfe9, #fff);
|
||||
background-image: -moz-linear-gradient(top, #cfdfe9, #fff);
|
||||
background-image: -o-linear-gradient(top, #cfdfe9, #fff);
|
||||
background-image: linear-gradient(to bottom, #cfdfe9, #fff);
|
||||
}
|
||||
|
||||
.wp-editor-wrap .wp_themeSkin .mceButtonDisabled {
|
||||
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 */
|
||||
border-color: #b0c8d7 !important;
|
||||
}
|
||||
|
||||
.wp-editor-wrap .wp_themeSkin .mceListBox .mceOpen {
|
||||
border-left: 0px !important;
|
||||
border-left: 0 !important;
|
||||
}
|
||||
|
||||
.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 .mceText,
|
||||
.wp-editor-wrap .wp_themeSkin table.mceListBoxEnabled:active .mceText {
|
||||
background: #B0C8D7;
|
||||
border-color: #5589AA !important;
|
||||
background: #b0c8d7;
|
||||
border-color: #5589aa;
|
||||
}
|
||||
|
||||
/* List Box Hover */
|
||||
.wp-editor-wrap .wp_themeSkin table.mceListBoxEnabled:hover .mceText,
|
||||
.wp-editor-wrap .wp_themeSkin .mceListBoxHover .mceText,
|
||||
.wp-editor-wrap .wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
|
||||
.wp-editor-wrap .wp_themeSkin .mceListBoxHover .mceOpen {
|
||||
border-color: #5589AA !important;
|
||||
background-color: #c9c9c9; /* 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 select.mceListBox {
|
||||
border-color: #B2B2B2;
|
||||
background-color: #fff;
|
||||
border-color: #5589aa;
|
||||
background: #c9c9c9;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#fff));
|
||||
background-image: -webkit-linear-gradient(bottom, #cfdfe9, #fff);
|
||||
background-image: -moz-linear-gradient(bottom, #cfdfe9, #fff);
|
||||
background-image: -o-linear-gradient(bottom, #cfdfe9, #fff);
|
||||
background-image: linear-gradient(to top, #cfdfe9, #fff);
|
||||
}
|
||||
|
||||
/* SplitButton */
|
||||
.wp-editor-wrap .wp_themeSkin .mceSplitButton a.mceAction,
|
||||
.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 .mceSplitButtonSelected a.mceOpen,
|
||||
.wp-editor-wrap .wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,
|
||||
.wp-editor-wrap .wp_themeSkin .mceSplitButton a.mceAction:hover {
|
||||
border-color: #5589AA !important;
|
||||
border-color: #5589aa;
|
||||
}
|
||||
|
||||
.wp-editor-wrap .wp_themeSkin table.mceSplitButton td {
|
||||
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 */
|
||||
background: #cfdfe9;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#fff));
|
||||
background-image: -webkit-linear-gradient(bottom, #cfdfe9, #fff);
|
||||
background-image: -moz-linear-gradient(bottom, #cfdfe9, #fff);
|
||||
background-image: -o-linear-gradient(bottom, #cfdfe9, #fff);
|
||||
background-image: linear-gradient(to top, #cfdfe9, #fff);
|
||||
}
|
||||
|
||||
.wp-editor-wrap .wp_themeSkin table.mceSplitButton:hover td {
|
||||
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 */
|
||||
background: #c9c9c9;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#bdccd5), to(#000));
|
||||
background-image: -webkit-linear-gradient(bottom, #bdccd5, #fff);
|
||||
background-image: -moz-linear-gradient(bottom, #bdccd5, #fff);
|
||||
background-image: -o-linear-gradient(bottom, #bdccd5, #fff);
|
||||
background-image: linear-gradient(to top, #bdccd5, #fff);
|
||||
}
|
||||
|
||||
.wp-editor-wrap .wp_themeSkin .mceSplitButtonActive {
|
||||
background-color: #B0C8D7;
|
||||
background-color: #b0c8d7;
|
||||
}
|
||||
|
||||
/* ColorSplitButton */
|
||||
.wp-editor-wrap .wp_themeSkin div.mceColorSplitMenu table {
|
||||
background-color: #ebebeb;
|
||||
border-color: #B2B2B2;
|
||||
border-color: #b2b2b2;
|
||||
}
|
||||
|
||||
.wp-editor-wrap .wp_themeSkin .mceColorSplitMenu a {
|
||||
border-color: #B2B2B2;
|
||||
border-color: #b2b2b2;
|
||||
}
|
||||
|
||||
.wp-editor-wrap .wp_themeSkin .mceColorSplitMenu a.mceMoreColors {
|
||||
@ -1097,25 +1078,24 @@ table.widefat .spam a:hover,
|
||||
.wp-editor-wrap .wp_themeSkin .mceMenu .mceMenuItemActive {
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
|
||||
.wp-editor-wrap .wp_themeSkin td.mceMenuItemSeparator {
|
||||
background-color: #aaa;
|
||||
}
|
||||
|
||||
.wp-editor-wrap .wp_themeSkin .mceMenuItemTitle a {
|
||||
background-color: #ccc;
|
||||
border-bottom-color: #aaa;
|
||||
}
|
||||
|
||||
.wp-editor-wrap .wp_themeSkin .mceMenuItemTitle span.mceText {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.wp-editor-wrap .wp_themeSkin .mceMenuItemDisabled .mceText {
|
||||
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 {
|
||||
background: #000;
|
||||
}
|
||||
@ -1185,53 +1165,31 @@ table.widefat .spam a:hover,
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.wp-editor-wrap.quicktags-toolbar input {
|
||||
.wp-editor-wrap .quicktags-toolbar input {
|
||||
color: #464646;
|
||||
border-color: #d1e5ee;
|
||||
background-color: #eff8ff;
|
||||
background-image: -ms-linear-gradient(bottom, #eff8ff, #fff);
|
||||
background-image: -moz-linear-gradient(bottom, #eff8ff, #fff);
|
||||
background-image: -o-linear-gradient(bottom, #eff8ff, #fff);
|
||||
background-image: -webkit-linear-gradient(bottom, #eff8ff, #fff);
|
||||
background-image: linear-gradient(bottom, #eff8ff, #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 */
|
||||
border-color: #b1c6cf;
|
||||
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);
|
||||
}
|
||||
|
||||
.wp-editor-wrap .quicktags-toolbar input:hover {
|
||||
border-color: #aaa;
|
||||
background: #ddd;
|
||||
border-color: #5589aa;
|
||||
background: #e0f1ff;
|
||||
}
|
||||
|
||||
.wp-editor-wrap.wp_themeSkin .mceButton,
|
||||
.wp-editor-wrap.wp_themeSkin .mceListBox .mceText,
|
||||
.wp-editor-wrap.wp_themeSkin .mceListBox .mceOpen {
|
||||
border-color: #ccc;
|
||||
background-color: #eff8ff; /* Fallback */
|
||||
background-image: -ms-linear-gradient(bottom, #eff8ff, #fff); /* IE10 */
|
||||
background-image: -moz-linear-gradient(bottom, #eff8ff, #fff); /* Firefox */
|
||||
background-image: -o-linear-gradient(bottom, #eff8ff, #fff); /* Opera */
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#eff8ff), to(#fff)); /* old Webkit */
|
||||
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 */
|
||||
.wp-editor-wrap .quicktags-toolbar,
|
||||
.wp-editor-wrap .wp_themeSkin tr.mceFirst td.mceToolbar {
|
||||
border-bottom: 1px solid #ccc;
|
||||
background: #eff8ff;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#cfdfe9), to(#eff8ff));
|
||||
background-image: -webkit-linear-gradient(bottom, #cfdfe9, #eff8ff);
|
||||
background-image: -moz-linear-gradient(bottom, #cfdfe9, #eff8ff);
|
||||
background-image: -o-linear-gradient(bottom, #cfdfe9, #eff8ff);
|
||||
background-image: linear-gradient(to top, #cfdfe9, #eff8ff);
|
||||
}
|
||||
|
||||
/* end TinyMCE */
|
||||
@ -1324,23 +1282,22 @@ table.widefat .spam a:hover,
|
||||
.folded #adminmenu li.current.menu-top,
|
||||
#adminmenu .wp-menu-arrow,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
|
||||
background-color: #5589AA; /* Fallback */
|
||||
background-image: -ms-linear-gradient(bottom, #5589AA, #619bbb); /* IE10 */
|
||||
background-image: -moz-linear-gradient(bottom, #5589AA, #619bbb); /* Firefox */
|
||||
background-image: -o-linear-gradient(bottom, #5589AA, #619bbb); /* Opera */
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#5589AA), to(#619bbb)); /* old Webkit */
|
||||
background-image: -webkit-linear-gradient(bottom, #5589AA, #619bbb); /* new Webkit */
|
||||
background-image: linear-gradient(bottom, #5589AA, #619bbb); /* proposed W3C Markup */
|
||||
background: #5589aa;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#5589aa), to(#619bbb));
|
||||
background-image: -webkit-linear-gradient(bottom, #5589aa, #619bbb);
|
||||
background-image: -moz-linear-gradient(bottom, #5589aa, #619bbb);
|
||||
background-image: -o-linear-gradient(bottom, #5589aa, #619bbb);
|
||||
background-image: linear-gradient(to top, #5589aa, #619bbb);
|
||||
}
|
||||
|
||||
#adminmenu .wp-menu-arrow div {
|
||||
background-color: #5589AA; /* Fallback */
|
||||
background-image: -ms-linear-gradient(right bottom, #5589AA, #619bbb); /* IE10 */
|
||||
background-image: -moz-linear-gradient(right bottom, #5589AA, #619bbb); /* Firefox */
|
||||
background-image: -o-linear-gradient(right bottom, #5589AA, #619bbb); /* Opera */
|
||||
background-image: -webkit-gradient(linear, right bottom, left top, from(#5589AA), to(#619bbb)); /* old Webkit */
|
||||
background-image: -webkit-linear-gradient(right bottom, #5589AA, #619bbb); /* new Webkit */
|
||||
background-image: linear-gradient(right bottom, #5589AA, #619bbb); /* proposed W3C Markup */
|
||||
background: #5589aa;
|
||||
background-image: -webkit-gradient(linear, right bottom, left top, from(#5589aa), to(#619bbb));
|
||||
background-image: -webkit-linear-gradient(bottom right, #5589aa, #619bbb);
|
||||
background-image: -moz-linear-gradient(bottom right, #5589aa, #619bbb);
|
||||
background-image: -o-linear-gradient(bottom right, #5589aa, #619bbb);
|
||||
background-image: linear-gradient(to top left, #5589aa, #619bbb);
|
||||
|
||||
}
|
||||
|
||||
#adminmenu li.wp-not-current-submenu .wp-menu-arrow {
|
||||
@ -1420,20 +1377,23 @@ table.widefat .spam a:hover,
|
||||
|
||||
#collapse-button {
|
||||
border-color: #d0dfe9;
|
||||
background-color: #eff8ff; /* Fallback */
|
||||
background-image: -ms-linear-gradient(bottom, #eff8ff, #fff); /* IE10 */
|
||||
background-image: -moz-linear-gradient(bottom, #eff8ff, #fff); /* Firefox */
|
||||
background-image: -o-linear-gradient(bottom, #eff8ff, #fff); /* Opera */
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#eff8ff), to(#fff)); /* old Webkit */
|
||||
background-image: -webkit-linear-gradient(bottom, #eff8ff, #fff); /* new Webkit */
|
||||
background-image: linear-gradient(bottom, #eff8ff, #fff); /* proposed W3C Markup */
|
||||
background: #eff8ff; /* Fallback */
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#eff8ff), to(#fff));
|
||||
background-image: -webkit-linear-gradient(bottom, #eff8ff, #fff);
|
||||
background-image: -moz-linear-gradient(bottom, #eff8ff, #fff);
|
||||
background-image: -o-linear-gradient(bottom, #eff8ff, #fff);
|
||||
background-image: linear-gradient(to top, #eff8ff, #fff);
|
||||
}
|
||||
|
||||
#collapse-menu:hover #collapse-button {
|
||||
border-color: #A0C3D5;
|
||||
}
|
||||
|
||||
#collapse-button div {
|
||||
background: transparent url(../images/arrows-vs.png) no-repeat 0 -72px;
|
||||
|
||||
}
|
||||
|
||||
.folded #collapse-button div {
|
||||
background-position: 0 -108px;
|
||||
}
|
||||
@ -1447,13 +1407,12 @@ table.widefat .spam a:hover,
|
||||
|
||||
#adminmenu li.wp-has-current-submenu,
|
||||
#adminmenu li.current.menu-top {
|
||||
background-color: #5589AA; /* Fallback */
|
||||
background-image: -ms-linear-gradient(bottom, #5589AA, #619bbb); /* IE10 */
|
||||
background-image: -moz-linear-gradient(bottom, #5589AA, #619bbb); /* Firefox */
|
||||
background-image: -o-linear-gradient(bottom, #5589AA, #619bbb); /* Opera */
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#5589AA), to(#619bbb)); /* old Webkit */
|
||||
background-image: -webkit-linear-gradient(bottom, #5589AA, #619bbb); /* new Webkit */
|
||||
background-image: linear-gradient(bottom, #5589AA, #619bbb); /* proposed W3C Markup */
|
||||
background: #5589aa;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#5589aa), to(#619bbb));
|
||||
background-image: -webkit-linear-gradient(bottom, #5589aa, #619bbb);
|
||||
background-image: -moz-linear-gradient(bottom, #5589aa, #619bbb);
|
||||
background-image: -o-linear-gradient(bottom, #5589aa, #619bbb);
|
||||
background-image: linear-gradient(to top, #5589aa, #619bbb);
|
||||
}
|
||||
|
||||
#adminmenu li.menu-top li:hover a {
|
||||
@ -1877,16 +1836,15 @@ table.diff .diff-addedline ins {
|
||||
/* screen options and help tabs */
|
||||
#screen-options-link-wrap,
|
||||
#contextual-help-link-wrap {
|
||||
background-color: #eff8ff; /* Fallback */
|
||||
border-right: 1px solid #D1E5EE;
|
||||
border-left: 1px solid #D1E5EE;
|
||||
border-bottom: 1px solid #D1E5EE;
|
||||
background-image: -ms-linear-gradient(bottom, #eff8ff, #eff8ff); /* IE10 */
|
||||
background-image: -moz-linear-gradient(bottom, #def1ff, #eff8ff); /* Firefox */
|
||||
background-image: -o-linear-gradient(bottom, #def1ff, #eff8ff); /* Opera */
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#def1ff), to(#eff8ff)); /* old Webkit */
|
||||
background-image: -webkit-linear-gradient(bottom, #def1ff, #eff8ff); /* new Webkit */
|
||||
background-image: linear-gradient(bottom, #def1ff, #eff8ff); /* proposed W3C Markup */
|
||||
background: #eff8ff;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#def1ff), to(#eff8ff));
|
||||
background-image: -webkit-linear-gradient(bottom, #def1ff, #eff8ff);
|
||||
background-image: -moz-linear-gradient(bottom, #def1ff, #eff8ff);
|
||||
background-image: -o-linear-gradient(bottom, #def1ff, #eff8ff);
|
||||
background-image: linear-gradient(to top, #def1ff, #eff8ff);
|
||||
}
|
||||
|
||||
#screen-meta-links a.show-settings {
|
||||
@ -1980,7 +1938,10 @@ fieldset.inline-edit-col-right .inline-edit-col {
|
||||
|
||||
.tablenav .tablenav-pages a {
|
||||
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,
|
||||
@ -2092,11 +2053,7 @@ body.press-this ul.category-tabs li.tabs a {
|
||||
}
|
||||
|
||||
div.widgets-sortables,
|
||||
#widgets-left .inactive {
|
||||
background-color: #f7fcfe;
|
||||
border-color: #d0dfe9;
|
||||
}
|
||||
|
||||
#widgets-left .inactive,
|
||||
#available-widgets .widget-holder {
|
||||
background-color: #f7fcfe;
|
||||
border-color: #d0dfe9;
|
||||
@ -2108,13 +2065,6 @@ div.widgets-sortables,
|
||||
|
||||
.sidebar-name {
|
||||
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;
|
||||
border-color: #d0dfe9;
|
||||
-webkit-box-shadow: inset 0 1px 0 #fff;
|
||||
@ -2182,7 +2132,7 @@ div.widgets-sortables,
|
||||
}
|
||||
|
||||
#post-body {
|
||||
background: #ffffff;
|
||||
background: #fff;
|
||||
border-top-color: #fff;
|
||||
border-bottom-color: #d0dfe9;
|
||||
}
|
||||
@ -2329,7 +2279,7 @@ div.widgets-sortables,
|
||||
|
||||
.about-wrap h1 {
|
||||
color: #333;
|
||||
text-shadow: 1px 1px 1px white;
|
||||
text-shadow: 1px 1px 1px #fff;
|
||||
}
|
||||
|
||||
.about-text {
|
||||
@ -2344,21 +2294,25 @@ div.widgets-sortables,
|
||||
.about-wrap h2 .nav-tab {
|
||||
color: #21759B;
|
||||
}
|
||||
|
||||
.about-wrap h2 .nav-tab:hover {
|
||||
color: #d54e21;
|
||||
|
||||
}
|
||||
|
||||
.about-wrap h2 .nav-tab-active,
|
||||
.about-wrap h2 .nav-tab-active:hover {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.about-wrap h2 .nav-tab-active {
|
||||
text-shadow: 1px 1px 1px white;
|
||||
text-shadow: 1px 1px 1px #fff;
|
||||
color: #464646;
|
||||
}
|
||||
|
||||
.about-wrap h3 {
|
||||
color: #333;
|
||||
text-shadow: 1px 1px 1px white;
|
||||
text-shadow: 1px 1px 1px #fff;
|
||||
}
|
||||
|
||||
.about-wrap .feature-section h4 {
|
||||
@ -2367,7 +2321,7 @@ div.widgets-sortables,
|
||||
|
||||
.about-wrap .feature-section img {
|
||||
background: #fff;
|
||||
border: 1px #ccc solid;
|
||||
border: 1px solid #ccc;
|
||||
|
||||
-webkit-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 {
|
||||
text-shadow: 1px 1px 1px white;
|
||||
text-shadow: 1px 1px 1px #fff;
|
||||
}
|
||||
|
||||
.about-wrap li.wp-person img.gravatar {
|
||||
-webkit-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 {
|
||||
color: #464646;
|
||||
text-shadow: 1px 1px 1px white;
|
||||
text-shadow: 1px 1px 1px #fff;
|
||||
}
|
||||
|
||||
.freedoms-php .about-wrap ol li {
|
||||
@ -2483,11 +2438,6 @@ div.widgets-sortables,
|
||||
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 {
|
||||
border-right-color: transparent;
|
||||
border-left-color: #d1e5ee;
|
||||
@ -2496,6 +2446,7 @@ div.widgets-sortables,
|
||||
.rtl .sidebar-name-arrow {
|
||||
background: transparent url(../images/arrows-vs.png) no-repeat 5px 9px;
|
||||
}
|
||||
|
||||
.rtl .sidebar-name:hover .sidebar-name-arrow {
|
||||
background: transparent url(../images/arrows-dark-vs.png) no-repeat 5px 9px;
|
||||
}
|
||||
|
@ -193,13 +193,12 @@ h3.dashboard-widget-title small,
|
||||
#nav-menu-header,
|
||||
#nav-menu-footer,
|
||||
.menu-item-handle {
|
||||
background-color: #f1f1f1; /* Fallback */
|
||||
background-image: -ms-linear-gradient(top, #f9f9f9, #ececec); /* IE10 */
|
||||
background-image: -moz-linear-gradient(top, #f9f9f9, #ececec); /* Firefox */
|
||||
background-image: -o-linear-gradient(top, #f9f9f9, #ececec); /* Opera */
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec)); /* old Webkit */
|
||||
background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec); /* new Webkit */
|
||||
background-image: linear-gradient(top, #f9f9f9, #ececec); /* proposed W3C Markup */
|
||||
background: #f1f1f1;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f9f9f9));
|
||||
background-image: -webkit-linear-gradient(bottom, #ececec, #f9f9f9);
|
||||
background-image: -moz-linear-gradient(bottom, #ececec, #f9f9f9);
|
||||
background-image: -o-linear-gradient(bottom, #ececec, #f9f9f9);
|
||||
background-image: linear-gradient(to top, #ececec, #f9f9f9);
|
||||
}
|
||||
|
||||
.widget .widget-top,
|
||||
@ -383,14 +382,24 @@ input[type=submit]:hover {
|
||||
.button,
|
||||
.submit input,
|
||||
.button-secondary {
|
||||
background: #f2f2f2 url(../images/white-grad.png) repeat-x scroll left top;
|
||||
text-shadow: rgba(255,255,255,1) 0 1px 0;
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
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,
|
||||
.submit input: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,
|
||||
@ -399,15 +408,25 @@ a.button-primary {
|
||||
border-color: #298cba;
|
||||
font-weight: bold;
|
||||
color: #fff;
|
||||
background: #21759B url(../images/button-grad.png) repeat-x scroll left top;
|
||||
text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
|
||||
text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
|
||||
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,
|
||||
button.button-primary:active,
|
||||
a.button-primary:active {
|
||||
background: #21759b url(../images/button-grad-active.png) repeat-x scroll left top;
|
||||
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,
|
||||
@ -432,8 +451,8 @@ a.button.disabled {
|
||||
.button-primary-disabled,
|
||||
.button-primary[disabled],
|
||||
.button-primary:disabled {
|
||||
color: #9FD0D5 !important;
|
||||
background: #298CBA !important;
|
||||
color: #9fd0d5 !important;
|
||||
background: #298cba !important;
|
||||
}
|
||||
|
||||
a:hover,
|
||||
@ -741,13 +760,12 @@ table.widefat span.spam a,
|
||||
#widget-list .widget-top,
|
||||
.postbox,
|
||||
.menu-item-settings {
|
||||
background-color: #f5f5f5; /* Fallback */
|
||||
background-image: -ms-linear-gradient(top, #f9f9f9, #f5f5f5); /* IE10 */
|
||||
background-image: -moz-linear-gradient(top, #f9f9f9, #f5f5f5); /* Firefox */
|
||||
background-image: -o-linear-gradient(top, #f9f9f9, #f5f5f5); /* Opera */
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#f5f5f5)); /* old Webkit */
|
||||
background-image: -webkit-linear-gradient(top, #f9f9f9, #f5f5f5); /* new Webkit */
|
||||
background-image: linear-gradient(top, #f9f9f9, #f5f5f5); /* proposed W3C Markup */
|
||||
background: #f5f5f5;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#f5f5f5), to(#f9f9f9));
|
||||
background-image: -webkit-linear-gradient(bottom, #f5f5f5, #f9f9f9);
|
||||
background-image: -moz-linear-gradient(bottom, #f5f5f5, #f9f9f9);
|
||||
background-image: -o-linear-gradient(bottom, #f5f5f5, #f9f9f9);
|
||||
background-image: linear-gradient(to top, #f5f5f5, #f9f9f9);
|
||||
}
|
||||
|
||||
.postbox h3 {
|
||||
@ -767,10 +785,6 @@ table.widefat span.spam a,
|
||||
background-image: url(../images/date-button.gif);
|
||||
}
|
||||
|
||||
#quicktags #ed_link {
|
||||
color: #00f;
|
||||
}
|
||||
|
||||
#rightnow .youhave {
|
||||
background-color: #f0f6fb;
|
||||
}
|
||||
@ -825,16 +839,15 @@ table.widefat span.spam a,
|
||||
/* screen options and help tabs */
|
||||
#screen-options-link-wrap,
|
||||
#contextual-help-link-wrap {
|
||||
background-color: #e3e3e3; /* Fallback */
|
||||
border-right: 1px solid #ccc;
|
||||
border-left: 1px solid #ccc;
|
||||
border-bottom: 1px solid #ccc;
|
||||
background-image: -ms-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* IE10 */
|
||||
background-image: -moz-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Firefox */
|
||||
background-image: -o-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Opera */
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#f1f1f1)); /* old Webkit */
|
||||
background-image: -webkit-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* new Webkit */
|
||||
background-image: linear-gradient(bottom, #dfdfdf, #f1f1f1); /* proposed W3C Markup */
|
||||
background: #e3e3e3;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#f1f1f1));
|
||||
background-image: -webkit-linear-gradient(bottom, #dfdfdf, #f1f1f1);
|
||||
background-image: -moz-linear-gradient(bottom, #dfdfdf, #f1f1f1);
|
||||
background-image: -o-linear-gradient(bottom, #dfdfdf, #f1f1f1);
|
||||
background-image: linear-gradient(to top, #dfdfdf, #f1f1f1);
|
||||
}
|
||||
|
||||
#screen-meta-links a.show-settings {
|
||||
@ -998,23 +1011,21 @@ table.widefat .spam a:hover,
|
||||
.folded #adminmenu li.current.menu-top,
|
||||
#adminmenu .wp-menu-arrow,
|
||||
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
|
||||
background-color: #777; /* Fallback */
|
||||
background-image: -ms-linear-gradient(bottom, #6d6d6d, #808080); /* IE10 */
|
||||
background-image: -moz-linear-gradient(bottom, #6d6d6d, #808080); /* Firefox */
|
||||
background-image: -o-linear-gradient(bottom, #6d6d6d, #808080); /* Opera */
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080)); /* old Webkit */
|
||||
background-image: -webkit-linear-gradient(bottom, #6d6d6d, #808080); /* new Webkit */
|
||||
background-image: linear-gradient(bottom, #6d6d6d, #808080); /* proposed W3C Markup */
|
||||
background: #777;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080));
|
||||
background-image: -webkit-linear-gradient(bottom, #6d6d6d, #808080);
|
||||
background-image: -moz-linear-gradient(bottom, #6d6d6d, #808080);
|
||||
background-image: -o-linear-gradient(bottom, #6d6d6d, #808080);
|
||||
background-image: linear-gradient(to top, #6d6d6d, #808080);
|
||||
}
|
||||
|
||||
#adminmenu .wp-menu-arrow div {
|
||||
background-color: #777; /* Fallback */
|
||||
background-image: -ms-linear-gradient(right bottom, #6d6d6d, #808080); /* IE10 */
|
||||
background-image: -moz-linear-gradient(right bottom, #6d6d6d, #808080); /* Firefox */
|
||||
background-image: -o-linear-gradient(right bottom, #6d6d6d, #808080); /* Opera */
|
||||
background-image: -webkit-gradient(linear, right bottom, left top, from(#6d6d6d), to(#808080)); /* old Webkit */
|
||||
background-image: -webkit-linear-gradient(right bottom, #6d6d6d, #808080); /* new Webkit */
|
||||
background-image: linear-gradient(right bottom, #6d6d6d, #808080); /* proposed W3C Markup */
|
||||
background: #777;
|
||||
background-image: -webkit-gradient(linear, right bottom, left top, from(#6d6d6d), to(#808080));
|
||||
background-image: -webkit-linear-gradient(bottom right, #6d6d6d, #808080);
|
||||
background-image: -moz-linear-gradient(bottom right, #6d6d6d, #808080);
|
||||
background-image: -o-linear-gradient(bottom right, #6d6d6d, #808080);
|
||||
background-image: linear-gradient(to top left, #6d6d6d, #808080);
|
||||
}
|
||||
|
||||
#adminmenu li.wp-not-current-submenu .wp-menu-arrow {
|
||||
@ -1094,13 +1105,12 @@ table.widefat .spam a:hover,
|
||||
|
||||
#collapse-button {
|
||||
border-color: #ccc;
|
||||
background-color: #f4f4f4; /* Fallback */
|
||||
background-image: -ms-linear-gradient(bottom, #dfdfdf, #fff); /* IE10 */
|
||||
background-image: -moz-linear-gradient(bottom, #dfdfdf, #fff); /* Firefox */
|
||||
background-image: -o-linear-gradient(bottom, #dfdfdf, #fff); /* Opera */
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#fff)); /* old Webkit */
|
||||
background-image: -webkit-linear-gradient(bottom, #dfdfdf, #fff); /* new Webkit */
|
||||
background-image: linear-gradient(bottom, #dfdfdf, #fff); /* proposed W3C Markup */
|
||||
background: #f4f4f4;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#fff));
|
||||
background-image: -webkit-linear-gradient(bottom, #dfdfdf, #fff);
|
||||
background-image: -moz-linear-gradient(bottom, #dfdfdf, #fff);
|
||||
background-image: -o-linear-gradient(bottom, #dfdfdf, #fff);
|
||||
background-image: linear-gradient(to top, #dfdfdf, #fff);
|
||||
}
|
||||
|
||||
#collapse-menu:hover #collapse-button {
|
||||
@ -1124,13 +1134,12 @@ table.widefat .spam a:hover,
|
||||
|
||||
#adminmenu li.wp-has-current-submenu,
|
||||
#adminmenu li.current.menu-top {
|
||||
background-color: #777; /* Fallback */
|
||||
background-image: -ms-linear-gradient(bottom, #6d6d6d, #808080); /* IE10 */
|
||||
background-image: -moz-linear-gradient(bottom, #6d6d6d, #808080); /* Firefox */
|
||||
background-image: -o-linear-gradient(bottom, #6d6d6d, #808080); /* Opera */
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080)); /* old Webkit */
|
||||
background-image: -webkit-linear-gradient(bottom, #6d6d6d, #808080); /* new Webkit */
|
||||
background-image: linear-gradient(bottom, #6d6d6d, #808080); /* proposed W3C Markup */
|
||||
background: #777;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080));
|
||||
background-image: -webkit-linear-gradient(bottom, #6d6d6d, #808080);
|
||||
background-image: -moz-linear-gradient(bottom, #6d6d6d, #808080);
|
||||
background-image: -o-linear-gradient(bottom, #6d6d6d, #808080);
|
||||
background-image: linear-gradient(to top, #6d6d6d, #808080);
|
||||
}
|
||||
|
||||
#adminmenu li.menu-top li:hover a {
|
||||
@ -1596,7 +1605,10 @@ fieldset.inline-edit-col-right .inline-edit-col {
|
||||
|
||||
.tablenav .tablenav-pages a {
|
||||
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,
|
||||
@ -1916,7 +1928,7 @@ div.widgets-sortables,
|
||||
|
||||
.about-wrap h1 {
|
||||
color: #333;
|
||||
text-shadow: 1px 1px 1px white;
|
||||
text-shadow: 1px 1px 1px #fff;
|
||||
}
|
||||
|
||||
.about-text {
|
||||
@ -1931,21 +1943,24 @@ div.widgets-sortables,
|
||||
.about-wrap h2 .nav-tab {
|
||||
color: #21759B;
|
||||
}
|
||||
|
||||
.about-wrap h2 .nav-tab:hover {
|
||||
color: #d54e21;
|
||||
}
|
||||
|
||||
.about-wrap h2 .nav-tab-active,
|
||||
.about-wrap h2 .nav-tab-active:hover {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.about-wrap h2 .nav-tab-active {
|
||||
text-shadow: 1px 1px 1px white;
|
||||
text-shadow: 1px 1px 1px #fff;
|
||||
color: #464646;
|
||||
}
|
||||
|
||||
.about-wrap h3 {
|
||||
color: #333;
|
||||
text-shadow: 1px 1px 1px white;
|
||||
text-shadow: 1px 1px 1px #fff;
|
||||
}
|
||||
|
||||
.about-wrap .feature-section h4 {
|
||||
@ -1960,7 +1975,7 @@ div.widgets-sortables,
|
||||
}
|
||||
|
||||
.about-wrap h4.wp-people-group {
|
||||
text-shadow: 1px 1px 1px white;
|
||||
text-shadow: 1px 1px 1px #fff;
|
||||
}
|
||||
|
||||
.about-wrap .point-releases {
|
||||
@ -1978,14 +1993,16 @@ div.widgets-sortables,
|
||||
.about-wrap li.wp-person img.gravatar {
|
||||
-webkit-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 {
|
||||
color: #464646;
|
||||
text-shadow: 1px 1px 1px white;
|
||||
text-shadow: 1px 1px 1px #fff;
|
||||
}
|
||||
|
||||
.freedoms-php .about-wrap ol li {
|
||||
color: #999;
|
||||
|
||||
}
|
||||
.freedoms-php .about-wrap ol p {
|
||||
color: #464646;
|
||||
@ -2069,11 +2086,6 @@ div.widgets-sortables,
|
||||
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 {
|
||||
border-right-color: transparent;
|
||||
border-left-color: #eee;
|
||||
|
@ -57,13 +57,12 @@ body {
|
||||
font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
|
||||
font-weight: normal;
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
|
||||
background-color: #f5f5f5;
|
||||
background-image: -webkit-linear-gradient( top, #f5f5f5, #eee );
|
||||
background-image: -moz-linear-gradient( top, #f5f5f5, #eee );
|
||||
background-image: -ms-linear-gradient( top, #f5f5f5, #eee );
|
||||
background-image: -o-linear-gradient( top, #f5f5f5, #eee );
|
||||
background-image: linear-gradient( top, #f5f5f5, #eee );
|
||||
background: #f5f5f5;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#eee), to(#f5f5f5));
|
||||
background-image: -webkit-linear-gradient(bottom, #eee, #f5f5f5);
|
||||
background-image: -moz-linear-gradient(bottom, #eee, #f5f5f5);
|
||||
background-image: -o-linear-gradient(bottom, #eee, #f5f5f5);
|
||||
background-image: linear-gradient(to top, #eee, #f5f5f5);
|
||||
}
|
||||
|
||||
.control-section:hover .customize-section-title,
|
||||
@ -71,12 +70,12 @@ body {
|
||||
.control-section.open .customize-section-title {
|
||||
color: #fff;
|
||||
text-shadow: 0 -1px 0 #333;
|
||||
background-color: #808080;
|
||||
background-image: -webkit-linear-gradient( top, #808080, #6d6d6d );
|
||||
background-image: -moz-linear-gradient( top, #808080, #6d6d6d );
|
||||
background-image: -ms-linear-gradient( top, #808080, #6d6d6d );
|
||||
background-image: -o-linear-gradient( top, #808080, #6d6d6d );
|
||||
background-image: linear-gradient( top, #808080, #6d6d6d );
|
||||
background: #808080;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080));
|
||||
background-image: -webkit-linear-gradient(bottom, #6d6d6d, #808080);
|
||||
background-image: -moz-linear-gradient(bottom, #6d6d6d, #808080);
|
||||
background-image: -o-linear-gradient(bottom, #6d6d6d, #808080);
|
||||
background-image: linear-gradient(to top, #6d6d6d, #808080);
|
||||
}
|
||||
|
||||
.control-section.open .customize-section-title {
|
||||
@ -528,10 +527,8 @@ body.cheatin p {
|
||||
margin: 0 auto;
|
||||
padding: 2em;
|
||||
font-size: 14px;
|
||||
|
||||
background: #fff;
|
||||
border: 1px solid #dfdfdf;
|
||||
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
}
|
||||
|
@ -15,12 +15,12 @@ body {
|
||||
}
|
||||
|
||||
a {
|
||||
color: #21759B;
|
||||
color: #21759b;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #D54E21;
|
||||
color: #d54e21;
|
||||
}
|
||||
|
||||
h1 {
|
||||
@ -71,7 +71,9 @@ abbr {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.submit input, .button, .button-secondary {
|
||||
.submit input,
|
||||
.button,
|
||||
.button-secondary {
|
||||
font-family: sans-serif;
|
||||
text-decoration: none;
|
||||
font-size: 14px !important;
|
||||
@ -81,23 +83,34 @@ abbr {
|
||||
border: 1px solid #bbb;
|
||||
color: #464646;
|
||||
-webkit-border-radius: 15px;
|
||||
border-radius: 15px;
|
||||
-moz-box-sizing: content-box;
|
||||
border-radius: 15px;
|
||||
-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;
|
||||
border-color: #666;
|
||||
}
|
||||
|
||||
.button, .submit input, .button-secondary {
|
||||
background: #f2f2f2 url(../images/white-grad.png) repeat-x scroll left top;
|
||||
}
|
||||
|
||||
.button:active, .submit input:active, .button-secondary:active {
|
||||
background: #eee url(../images/white-grad-active.png) repeat-x scroll left top;
|
||||
.button:active,
|
||||
.submit input:active,
|
||||
.button-secondary:active {
|
||||
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);
|
||||
}
|
||||
|
||||
textarea {
|
||||
@ -145,7 +158,7 @@ textarea {
|
||||
line-height: 20px;
|
||||
font-size: 15px;
|
||||
padding: 2px;
|
||||
border: 1px #DFDFDF solid;
|
||||
border: 1px #dfdfdf solid;
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
font-family: sans-serif;
|
||||
|
@ -3759,12 +3759,12 @@ abbr.required {
|
||||
overflow: hidden;
|
||||
margin-bottom: 2px;
|
||||
border: 1px solid #d1d1d1;
|
||||
background: #fff;
|
||||
background-image: linear-gradient(bottom, rgb(255,255,255) 0%, rgb(247,247,247) 100%);
|
||||
background-image: -o-linear-gradient(bottom, rgb(255,255,255) 0%, rgb(247,247,247) 100%);
|
||||
background-image: -moz-linear-gradient(bottom, rgb(255,255,255) 0%, rgb(247,247,247) 100%);
|
||||
background-image: -webkit-linear-gradient(bottom, rgb(255,255,255) 0%, rgb(247,247,247) 100%);
|
||||
background-image: -ms-linear-gradient(bottom, rgb(255,255,255) 0%, rgb(247,247,247) 100%);
|
||||
background: #f7f7f7;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#f7f7f7));
|
||||
background-image: -webkit-linear-gradient(bottom, #fff, #f7f7f7);
|
||||
background-image: -moz-linear-gradient(bottom, #fff, #f7f7f7);
|
||||
background-image: -o-linear-gradient(bottom, #fff, #f7f7f7);
|
||||
background-image: linear-gradient(to top, #fff, #f7f7f7);
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
|
||||
@ -3776,12 +3776,12 @@ abbr.required {
|
||||
width: 0;
|
||||
height: 100%;
|
||||
margin-top: -24px;
|
||||
background-color: #83B4D8;
|
||||
background-image: linear-gradient(bottom, rgb(114,167,207) 0%, rgb(144,197,238) 100%);
|
||||
background-image: -o-linear-gradient(bottom, rgb(114,167,207) 0%, rgb(144,197,238) 100%);
|
||||
background-image: -moz-linear-gradient(bottom, rgb(114,167,207) 0%, rgb(144,197,238) 100%);
|
||||
background-image: -webkit-linear-gradient(bottom, rgb(114,167,207) 0%, rgb(144,197,238) 100%);
|
||||
background-image: -ms-linear-gradient(bottom, rgb(114,167,207) 0%, rgb(144,197,238) 100%);
|
||||
background-color: #8cc1e9;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#72a7cf), to(#8cc1e9));
|
||||
background-image: -webkit-linear-gradient(bottom, #72a7cf, #8cc1e9);
|
||||
background-image: -moz-linear-gradient(bottom, #72a7cf, #8cc1e9);
|
||||
background-image: -o-linear-gradient(bottom, #72a7cf, #8cc1e9);
|
||||
background-image: linear-gradient(to top, #72a7cf, #8cc1e9);
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
-webkit-box-shadow: 0 0 3px rgba(0,0,0,0.3);
|
||||
@ -4726,7 +4726,6 @@ h2 .nav-tab {
|
||||
#pass-strength-result.short,
|
||||
.button-highlighted,
|
||||
input.button-highlighted,
|
||||
#quicktags #ed_strong,
|
||||
#ed_reply_toolbar #ed_reply_strong,
|
||||
.item-controls .item-order a,
|
||||
.feature-filter .feature-name {
|
||||
@ -4854,13 +4853,12 @@ input.button-highlighted,
|
||||
position: relative;
|
||||
cursor: move;
|
||||
color: #333;
|
||||
background: #dfdfdf;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.07, #e6e6e6), color-stop(0.77, #d8d8d8));
|
||||
background: #e6e6e6;
|
||||
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: -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: linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
|
||||
background-image: -moz-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%);
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
border: 1px solid #b4b4b4;
|
||||
@ -6877,13 +6875,12 @@ a.rsswidget {
|
||||
}
|
||||
|
||||
#menu-to-edit .menu-item-invalid .menu-item-handle {
|
||||
background-color: #f6c9cc; /* Fallback */
|
||||
background-image: -ms-linear-gradient(bottom, #f6c9cc, #fdf8ff); /* IE10 */
|
||||
background-image: -moz-linear-gradient(bottom, #f6c9cc, #fdf8ff); /* Firefox */
|
||||
background-image: -o-linear-gradient(bottom, #f6c9cc, #fdf8ff); /* Opera */
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#f6c9cc), to(#fdf8ff)); /* old Webkit */
|
||||
background-image: -webkit-linear-gradient(bottom, #f6c9cc, #fdf8ff); /* new Webkit */
|
||||
background-image: linear-gradient(bottom, #f6c9cc, #fdf8ff); /* proposed W3C Markup */
|
||||
background: #f6c9cc;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#f6c9cc), to(#fdf8ff));
|
||||
background-image: -webkit-linear-gradient(bottom, #f6c9cc, #fdf8ff);
|
||||
background-image: -moz-linear-gradient(bottom, #f6c9cc, #fdf8ff);
|
||||
background-image: -o-linear-gradient(bottom, #f6c9cc, #fdf8ff);
|
||||
background-image: linear-gradient(to top, #f6c9cc, #fdf8ff);
|
||||
}
|
||||
|
||||
.menu-item-edit-active .menu-item-handle {
|
||||
|
@ -38,14 +38,12 @@
|
||||
width: 100%;
|
||||
min-width: 600px; /* match the min-width of the body in wp-admin.css */
|
||||
z-index: 99999;
|
||||
|
||||
background-color: #464646; /* Fallback */
|
||||
background-image: -ms-linear-gradient(bottom, #373737, #464646 5px); /* IE10 */
|
||||
background-image: -moz-linear-gradient(bottom, #373737, #464646 5px); /* Firefox */
|
||||
background-image: -o-linear-gradient(bottom, #373737, #464646 5px); /* Opera */
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#373737), to(#464646)); /* old Webkit */
|
||||
background-image: -webkit-linear-gradient(bottom, #373737, #464646 5px); /* new Webkit */
|
||||
background-image: linear-gradient(bottom, #373737, #464646 5px); /* proposed W3C Markup */
|
||||
background: #464646;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #373737), color-stop(18%, #464646));
|
||||
background-image: -webkit-linear-gradient(bottom, #373737 0, #464646 5px);
|
||||
background-image: -moz-linear-gradient(bottom, #373737 0, #464646 5px);
|
||||
background-image: -o-linear-gradient(bottom, #373737 0, #464646 5px);
|
||||
background-image: linear-gradient(to top, #373737 0, #464646 5px);
|
||||
}
|
||||
|
||||
#wpadminbar .ab-sub-wrapper,
|
||||
@ -199,13 +197,12 @@
|
||||
#wpadminbar .ab-top-menu > li > .ab-item:focus,
|
||||
#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus {
|
||||
color: #fafafa;
|
||||
background-color: #3a3a3a; /* Fallback */
|
||||
background-image: -ms-linear-gradient(bottom, #3a3a3a, #222); /* IE10 */
|
||||
background-image: -moz-linear-gradient(bottom, #3a3a3a, #222); /* Firefox */
|
||||
background-image: -o-linear-gradient(bottom, #3a3a3a, #222); /* Opera */
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#3a3a3a), to(#222)); /* old Webkit */
|
||||
background-image: -webkit-linear-gradient(bottom, #3a3a3a, #222); /* new Webkit */
|
||||
background-image: linear-gradient(bottom, #3a3a3a, #222); /* proposed W3C Markup */
|
||||
background: #222;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#3a3a3a), to(#222));
|
||||
background-image: -webkit-linear-gradient(bottom, #3a3a3a, #222);
|
||||
background-image: -moz-linear-gradient(bottom, #3a3a3a, #222);
|
||||
background-image: -o-linear-gradient(bottom, #3a3a3a, #222);
|
||||
background-image: linear-gradient(to top, #3a3a3a, #222);
|
||||
}
|
||||
|
||||
#wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item,
|
||||
@ -297,13 +294,12 @@
|
||||
|
||||
#wpadminbar .ab-top-secondary {
|
||||
float: right;
|
||||
background-color: #464646; /* Fallback */
|
||||
background-image: -ms-linear-gradient(bottom, #373737, #464646 5px); /* IE10 */
|
||||
background-image: -moz-linear-gradient(bottom, #373737, #464646 5px); /* Firefox */
|
||||
background-image: -o-linear-gradient(bottom, #373737, #464646 5px); /* Opera */
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#373737), to(#464646)); /* old Webkit */
|
||||
background-image: -webkit-linear-gradient(bottom, #373737, #464646 5px); /* new Webkit */
|
||||
background-image: linear-gradient(bottom, #373737, #464646 5px); /* proposed W3C Markup */
|
||||
background: #464646;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #373737), color-stop(18%, #464646));
|
||||
background-image: -webkit-linear-gradient(bottom, #373737 0, #464646 5px);
|
||||
background-image: -moz-linear-gradient(bottom, #373737 0, #464646 5px);
|
||||
background-image: -o-linear-gradient(bottom, #373737 0, #464646 5px);
|
||||
background-image: linear-gradient(to top, #373737 0, #464646 5px);
|
||||
}
|
||||
|
||||
#wpadminbar ul li:last-child,
|
||||
|
@ -287,7 +287,7 @@
|
||||
.wp_themeSkin select.mceListBox {
|
||||
font-family: Arial, "Bitstream Vera Sans", Helvetica, Verdana, sans-serif;
|
||||
font-size: 12px;
|
||||
border-color: #B2B2B2;
|
||||
border-color: #b2b2b2;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
@ -901,24 +901,22 @@
|
||||
.wp_themeSkin .mceListBox .mceText,
|
||||
.wp_themeSkin .mceListBox .mceOpen {
|
||||
border-color: #ccc;
|
||||
background-color: #eee; /* Fallback */
|
||||
background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */
|
||||
background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */
|
||||
background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */
|
||||
background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */
|
||||
background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */
|
||||
background: #eee;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff));
|
||||
background-image: -webkit-linear-gradient(bottom, #ddd, #fff);
|
||||
background-image: -moz-linear-gradient(bottom, #ddd, #fff);
|
||||
background-image: -o-linear-gradient(bottom, #ddd, #fff);
|
||||
background-image: linear-gradient(to top, #ddd, #fff);
|
||||
}
|
||||
|
||||
.wp_themeSkin a.mceButtonEnabled:hover {
|
||||
border-color: #a0a0a0;
|
||||
background: #ddd; /* Fallback */
|
||||
background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */
|
||||
background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */
|
||||
background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */
|
||||
background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */
|
||||
background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */
|
||||
background: #eee;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff));
|
||||
background-image: -webkit-linear-gradient(bottom, #ccc, #fff);
|
||||
background-image: -moz-linear-gradient(bottom, #ccc, #fff);
|
||||
background-image: -o-linear-gradient(bottom, #ccc, #fff);
|
||||
background-image: linear-gradient(to top, #ccc, #fff);
|
||||
}
|
||||
|
||||
.wp_themeSkin a.mceButton:active,
|
||||
@ -927,14 +925,13 @@
|
||||
.wp_themeSkin a.mceButtonActive,
|
||||
.wp_themeSkin a.mceButtonActive:active,
|
||||
.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;
|
||||
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 {
|
||||
@ -960,13 +957,12 @@
|
||||
.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
|
||||
.wp_themeSkin .mceListBoxHover .mceOpen {
|
||||
border-color: #909090;
|
||||
background-color: #eee; /* Fallback */
|
||||
background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */
|
||||
background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */
|
||||
background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */
|
||||
background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */
|
||||
background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */
|
||||
background: #eee;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff));
|
||||
background-image: -webkit-linear-gradient(bottom, #ccc, #fff);
|
||||
background-image: -moz-linear-gradient(bottom, #ccc, #fff);
|
||||
background-image: -o-linear-gradient(bottom, #ccc, #fff);
|
||||
background-image: linear-gradient(to top, #ccc, #fff);
|
||||
}
|
||||
|
||||
/* SplitButton */
|
||||
@ -983,22 +979,21 @@
|
||||
}
|
||||
|
||||
.wp_themeSkin table.mceSplitButton td {
|
||||
background-color: #eee; /* Fallback */
|
||||
background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */
|
||||
background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */
|
||||
background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */
|
||||
background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */
|
||||
background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */
|
||||
background: #eee;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff));
|
||||
background-image: -webkit-linear-gradient(bottom, #ddd, #fff);
|
||||
background-image: -moz-linear-gradient(bottom, #ddd, #fff);
|
||||
background-image: -o-linear-gradient(bottom, #ddd, #fff);
|
||||
background-image: linear-gradient(to top, #ddd, #fff);
|
||||
}
|
||||
|
||||
.wp_themeSkin table.mceSplitButton:hover td {
|
||||
background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */
|
||||
background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */
|
||||
background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */
|
||||
background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */
|
||||
background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */
|
||||
background: #eee;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff));
|
||||
background-image: -webkit-linear-gradient(bottom, #ccc, #fff);
|
||||
background-image: -moz-linear-gradient(bottom, #ccc, #fff);
|
||||
background-image: -o-linear-gradient(bottom, #ccc, #fff);
|
||||
background-image: linear-gradient(to top, #ccc, #fff);
|
||||
}
|
||||
|
||||
.wp_themeSkin .mceSplitButtonActive {
|
||||
@ -1057,12 +1052,12 @@
|
||||
.quicktags-toolbar,
|
||||
.wp_themeSkin tr.mceFirst td.mceToolbar {
|
||||
border-bottom: 1px solid #ccc;
|
||||
background-color: #e9e9e9; /* Fallback */
|
||||
background-image: -ms-linear-gradient(bottom, #ddd, #e9e9e9); /* IE10 */
|
||||
background-image: -moz-linear-gradient(bottom, #ddd, #e9e9e9); /* Firefox */
|
||||
background-image: -o-linear-gradient(bottom, #ddd, #e9e9e9); /* Opera */
|
||||
background-image: -webkit-linear-gradient(bottom, #ddd, #e9e9e9); /* new Webkit */
|
||||
background-image: linear-gradient(bottom, #ddd, #e9e9e9); /* proposed W3C Markup */
|
||||
background: #e9e9e9;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#e9e9e9));
|
||||
background-image: -webkit-linear-gradient(bottom, #ddd, #e9e9e9);
|
||||
background-image: -moz-linear-gradient(bottom, #ddd, #e9e9e9);
|
||||
background-image: -o-linear-gradient(bottom, #ddd, #e9e9e9);
|
||||
background-image: linear-gradient(to top, #ddd, #e9e9e9);
|
||||
}
|
||||
|
||||
.wp-switch-editor {
|
||||
@ -1144,17 +1139,17 @@ html[dir="rtl"] .wp-switch-editor {
|
||||
display: inline-block;
|
||||
min-width: 26px;
|
||||
padding: 2px 4px;
|
||||
font: 12px/18px Arial,Helvetica,sans-serif normal;
|
||||
font: 12px/18px Arial, Helvetica, sans-serif normal;
|
||||
color: #464646;
|
||||
border: 1px solid #C3C3C3;
|
||||
border: 1px solid #c3c3c3;
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
background-color: #eee;
|
||||
background-image: -ms-linear-gradient(bottom, #e3e3e3, #fff);
|
||||
background-image: -moz-linear-gradient(bottom, #e3e3e3, #fff);
|
||||
background-image: -o-linear-gradient(bottom, #e3e3e3, #fff);
|
||||
background: #eee;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#e3e3e3), to(#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 {
|
||||
@ -1818,8 +1813,12 @@ RTL
|
||||
color: #777;
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
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-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,
|
||||
@ -1827,9 +1826,12 @@ RTL
|
||||
.wp-tmce-mode #wp-fullscreen-modes a:first-child {
|
||||
color: #333;
|
||||
border-color: #999;
|
||||
background-color: #eee;
|
||||
background-image: -moz-linear-gradient(bottom, #f9f9f9, #e0e0e0);
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#f9f9f9), to(#e0e0e0));
|
||||
background: #eee;
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#e4e4e4), to(#f9f9f9));
|
||||
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 {
|
||||
@ -1922,13 +1924,12 @@ RTL
|
||||
|
||||
#fullscreen-topbar {
|
||||
border-bottom-color: #DFDFDF;
|
||||
background-color: #f1f1f1; /* Fallback */
|
||||
background-image: -ms-linear-gradient(top, #f9f9f9, #ececec); /* IE10 */
|
||||
background-image: -moz-linear-gradient(top, #f9f9f9, #ececec); /* Firefox */
|
||||
background-image: -o-linear-gradient(top, #f9f9f9, #ececec); /* Opera */
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ececec)); /* old Webkit */
|
||||
background-image: -webkit-linear-gradient(top, #f9f9f9, #ececec); /* new Webkit */
|
||||
background-image: linear-gradient(top, #f9f9f9, #ececec); /* proposed W3C Markup */
|
||||
background: #f1f1f1;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f9f9f9));
|
||||
background-image: -webkit-linear-gradient(bottom, #ececec, #f9f9f9);
|
||||
background-image: -moz-linear-gradient(bottom, #ececec, #f9f9f9);
|
||||
background-image: -o-linear-gradient(bottom, #ececec, #f9f9f9);
|
||||
background-image: linear-gradient(to top, #ececec, #f9f9f9);
|
||||
}
|
||||
|
||||
/* =CSS 3 transitions
|
||||
|
@ -29,12 +29,12 @@
|
||||
color: #fff;
|
||||
border-radius: 3px 3px 0 0;
|
||||
text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
|
||||
background-color: #8cc1e9;
|
||||
background-image: -webkit-linear-gradient(bottom, rgb(114,167,207) 0%, rgb(140,193,233) 100%);
|
||||
background-image: -moz-linear-gradient(bottom, rgb(114,167,207) 0%, rgb(140,193,233) 100%);
|
||||
background-image: -ms-linear-gradient(bottom, rgb(114,167,207) 0%, rgb(140,193,233) 100%);
|
||||
background-image: -o-linear-gradient(bottom, rgb(114,167,207) 0%, rgb(140,193,233) 100%);
|
||||
background-image: linear-gradient(bottom, rgb(114,167,207) 0%, rgb(140,193,233) 100%);
|
||||
background: #8cc1e9;
|
||||
background-image: -webkit-gradient(linear, left bottom, left top, from(#72a7cf), to(#8cc1e9));
|
||||
background-image: -webkit-linear-gradient(bottom, #72a7cf, #8cc1e9);
|
||||
background-image: -moz-linear-gradient(bottom, #72a7cf, #8cc1e9);
|
||||
background-image: -o-linear-gradient(bottom, #72a7cf, #8cc1e9);
|
||||
background-image: linear-gradient(to top, #72a7cf, #8cc1e9);
|
||||
}
|
||||
|
||||
.wp-pointer-content h3:before {
|
||||
|
Loading…
Reference in New Issue
Block a user