Use a sprite for screen options toggle. Props TECannon PeteMall. see #15163

git-svn-id: https://develop.svn.wordpress.org/trunk@16081 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2010-10-29 16:23:17 +00:00
parent b5025d2b5b
commit e33e94e28d
5 changed files with 10 additions and 9 deletions

File diff suppressed because one or more lines are too long

View File

@ -2602,7 +2602,8 @@ fieldset {
}
#screen-meta a.show-settings {
background-image: url( ../images/screen-options-right.gif?ver=20100531 );
background-image: url( ../images/screen-options-toggle.gif?ver=20100531 );
background-position: top right;
}
#screen-meta a.show-settings:hover {

View File

@ -205,11 +205,11 @@ jQuery(document).ready( function($) {
$('#screen-options-wrap').slideToggle('fast', function(){
if ( $(this).hasClass('screen-options-open') ) {
$('#show-settings-link').css({'backgroundImage':'url("images/screen-options-right.gif?ver=20100531")'});
$('#show-settings-link').css({'backgroundPosition':'top right'});
$('#contextual-help-link-wrap').css('visibility', '');
$(this).removeClass('screen-options-open');
} else {
$('#show-settings-link').css({'backgroundImage':'url("images/screen-options-right-up.gif?ver=20100531")'});
$('#show-settings-link').css({'backgroundPosition':'bottom right'});
$(this).addClass('screen-options-open');
}
});
@ -223,11 +223,11 @@ jQuery(document).ready( function($) {
$('#contextual-help-wrap').slideToggle('fast', function() {
if ( $(this).hasClass('contextual-help-open') ) {
$('#contextual-help-link').css({'backgroundImage':'url("images/screen-options-right.gif?ver=20100531")'});
$('#contextual-help-link').css({'backgroundPosition':'top right'});
$('#screen-options-link-wrap').css('visibility', '');
$(this).removeClass('contextual-help-open');
} else {
$('#contextual-help-link').css({'backgroundImage':'url("images/screen-options-right-up.gif?ver=20100531")'});
$('#contextual-help-link').css({'backgroundPosition':'bottom right'});
$(this).addClass('contextual-help-open');
}
});

File diff suppressed because one or more lines are too long

View File

@ -11,7 +11,7 @@ class WP_Admin_Bar {
if ( is_super_admin() ) {
require( ABSPATH . WPINC . '/admin-bar/admin-bar-superadmin.php' );
}
/* Set the protocol used throughout this code */
if ( is_ssl() )
$this->proto = 'https://';
@ -184,7 +184,7 @@ class WP_Admin_Bar {
add_action( 'wp_before_admin_bar_render', 'wp_admin_bar_appearance_menu', 70 );
add_action( 'wp_before_admin_bar_render', 'wp_admin_bar_updates_menu', 80 );
add_action( 'wp_before_admin_bar_render', 'wp_admin_bar_shortlink_menu', 90 );
if ( is_multisite() && is_super_admin() && function_exists('wp_admin_bar_superadmin_settings_menu') )
add_action( 'wp_before_admin_bar_render', 'wp_admin_bar_superadmin_settings_menu', 1000 );