Fix double border on right side of contextual help when no help sidebar exists. See #18197.

git-svn-id: https://develop.svn.wordpress.org/trunk@19142 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jon Cave 2011-11-04 00:07:57 +00:00
parent f3c1ce364a
commit b08b1b9314
7 changed files with 11 additions and 8 deletions

File diff suppressed because one or more lines are too long

View File

@ -1623,6 +1623,7 @@ table.diff .diff-addedline ins {
color: #333; color: #333;
} }
.contextual-help-sidebar,
.contextual-help-tabs .active { .contextual-help-tabs .active {
border-color: #D1E5EE; border-color: #D1E5EE;
} }

File diff suppressed because one or more lines are too long

View File

@ -792,6 +792,7 @@ table.widefat span.spam a,
color: #333; color: #333;
} }
.contextual-help-sidebar,
.contextual-help-tabs .active { .contextual-help-tabs .active {
border-color: #ccc; border-color: #ccc;
} }

File diff suppressed because one or more lines are too long

View File

@ -1484,9 +1484,8 @@ form.upgrade .hint {
.contextual-help-tabs-wrap { .contextual-help-tabs-wrap {
padding: 0 20px; padding: 0 20px;
overflow: auto; overflow: auto;
border-left-width: 1px;
border-width: 0 1px; border-left-style: solid;
border-style: solid;
} }
.help-tab-content { .help-tab-content {
@ -1509,6 +1508,8 @@ form.upgrade .hint {
float: right; float: right;
padding: 0 8px 0 12px; padding: 0 8px 0 12px;
overflow: auto; overflow: auto;
border-left-width: 1px;
border-left-style: solid;
} }

View File

@ -431,13 +431,13 @@ function wp_default_styles( &$styles ) {
// Any rtl stylesheets that don't have a .dev version for ltr // Any rtl stylesheets that don't have a .dev version for ltr
$no_suffix = array( 'farbtastic' ); $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( 'ie', "/wp-admin/css/ie$suffix.css", array(), '20111015' );
$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 = '20111103'; $colors_version = '20111103b';
// 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 );