Fix double border on right side of contextual help when no help sidebar exists. See #18197.
git-svn-id: http://svn.automattic.com/wordpress/trunk@19142 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
dffd88b194
commit
4516c37a11
File diff suppressed because one or more lines are too long
|
@ -1623,6 +1623,7 @@ table.diff .diff-addedline ins {
|
|||
color: #333;
|
||||
}
|
||||
|
||||
.contextual-help-sidebar,
|
||||
.contextual-help-tabs .active {
|
||||
border-color: #D1E5EE;
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -792,6 +792,7 @@ table.widefat span.spam a,
|
|||
color: #333;
|
||||
}
|
||||
|
||||
.contextual-help-sidebar,
|
||||
.contextual-help-tabs .active {
|
||||
border-color: #ccc;
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1484,9 +1484,8 @@ form.upgrade .hint {
|
|||
.contextual-help-tabs-wrap {
|
||||
padding: 0 20px;
|
||||
overflow: auto;
|
||||
|
||||
border-width: 0 1px;
|
||||
border-style: solid;
|
||||
border-left-width: 1px;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
.help-tab-content {
|
||||
|
@ -1509,6 +1508,8 @@ form.upgrade .hint {
|
|||
float: right;
|
||||
padding: 0 8px 0 12px;
|
||||
overflow: auto;
|
||||
border-left-width: 1px;
|
||||
border-left-style: solid;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -431,13 +431,13 @@ function wp_default_styles( &$styles ) {
|
|||
// Any rtl stylesheets that don't have a .dev version for ltr
|
||||
$no_suffix = array( 'farbtastic' );
|
||||
|
||||
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20111103c' );
|
||||
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20111103d' );
|
||||
|
||||
$styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array(), '20111015' );
|
||||
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
|
||||
|
||||
// all colors stylesheets need to have the same query strings (cache manifest compat)
|
||||
$colors_version = '20111103';
|
||||
$colors_version = '20111103b';
|
||||
|
||||
// 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 );
|
||||
|
|
Loading…
Reference in New Issue