mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-19 09:05:22 +01:00
Add basic help styles to colors-classic. props ocean90, see #18964.
git-svn-id: http://svn.automattic.com/wordpress/trunk@18980 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
2ce5a485ed
commit
b040745a22
File diff suppressed because one or more lines are too long
@ -1581,26 +1581,41 @@ table.diff .diff-addedline ins {
|
|||||||
color: #D54E21;
|
color: #D54E21;
|
||||||
}
|
}
|
||||||
|
|
||||||
#screen-options-wrap,
|
#screen-meta {
|
||||||
#contextual-help-wrap {
|
background-color: #fff;
|
||||||
background-color: #f7fcfe;
|
|
||||||
border-color: #D1e5ee;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#screen-options-link-wrap,
|
#contextual-help-back {
|
||||||
#contextual-help-link-wrap {
|
background-color: #f1f1f1;
|
||||||
background-color: #eff8ff; /* Fallback */
|
border-color: #ccc;
|
||||||
border-right: 1px solid #D1E5EE;
|
|
||||||
border-left: 1px solid #D1E5EE;
|
-webkit-box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.05 );
|
||||||
border-bottom: 1px solid #D1E5EE;
|
-moz-box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.05 );
|
||||||
background-image: -ms-linear-gradient(bottom, #eff8ff, #fff); /* IE10 */
|
box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.05 );
|
||||||
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 */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.contextual-help-tabs a:hover {
|
||||||
|
background-color: #EAF2FA;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contextual-help-tabs .active {
|
||||||
|
border-color: #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contextual-help-tabs .active,
|
||||||
|
.contextual-help-tabs .active a,
|
||||||
|
.contextual-help-tabs .active a:hover {
|
||||||
|
background: #fff;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contextual-help-tabs-wrap {
|
||||||
|
border-color: #ccc;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#replyerror {
|
#replyerror {
|
||||||
border-color: #ddd;
|
border-color: #ddd;
|
||||||
background-color: #f9f9f9;
|
background-color: #f9f9f9;
|
||||||
|
@ -437,7 +437,7 @@ function wp_default_styles( &$styles ) {
|
|||||||
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
|
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
|
||||||
|
|
||||||
// all colors stylesheets need to have the same query strings (cache manifest compat)
|
// all colors stylesheets need to have the same query strings (cache manifest compat)
|
||||||
$colors_version = '20111015';
|
$colors_version = '20111017';
|
||||||
|
|
||||||
// Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string.
|
// Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string.
|
||||||
$styles->add( 'colors', true, array('wp-admin'), $colors_version );
|
$styles->add( 'colors', true, array('wp-admin'), $colors_version );
|
||||||
|
Loading…
Reference in New Issue
Block a user