Make WordPress Core


Ignore:
Timestamp:
11/23/2011 10:14:03 PM (13 years ago)
Author:
koopersmith
Message:

Remove help sidebar background when no sidebar exists. props chrisbliss18, see #18197, [19361].

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/screen.php

    r19428 r19430  
    688688        }
    689689
     690        $has_sidebar = ! empty( $this->_help_sidebar );
     691
     692        $help_class = 'hidden';
     693        if ( ! $has_sidebar )
     694            $help_class .= ' no-sidebar';
     695
    690696        // Time to render!
    691697        ?>
    692698        <div id="screen-meta" class="metabox-prefs">
    693            
    694             <div id="contextual-help-wrap" class="hidden">
     699
     700            <div id="contextual-help-wrap" class="<?php echo esc_attr( $help_class ); ?>">
    695701                <div id="contextual-help-back"></div>
    696702                <div id="contextual-help-columns">
     
    712718                    </div>
    713719
    714                     <?php if ( ! empty( $this->_help_sidebar ) ) : ?>
     720                    <?php if ( $has_sidebar ) : ?>
    715721                    <div class="contextual-help-sidebar">
    716722                        <?php echo self::$this->_help_sidebar; ?>
Note: See TracChangeset for help on using the changeset viewer.