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:
parent
b5025d2b5b
commit
e33e94e28d
File diff suppressed because one or more lines are too long
@ -2602,7 +2602,8 @@ fieldset {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#screen-meta a.show-settings {
|
#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 {
|
#screen-meta a.show-settings:hover {
|
||||||
|
@ -205,11 +205,11 @@ jQuery(document).ready( function($) {
|
|||||||
|
|
||||||
$('#screen-options-wrap').slideToggle('fast', function(){
|
$('#screen-options-wrap').slideToggle('fast', function(){
|
||||||
if ( $(this).hasClass('screen-options-open') ) {
|
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', '');
|
$('#contextual-help-link-wrap').css('visibility', '');
|
||||||
$(this).removeClass('screen-options-open');
|
$(this).removeClass('screen-options-open');
|
||||||
} else {
|
} 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');
|
$(this).addClass('screen-options-open');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -223,11 +223,11 @@ jQuery(document).ready( function($) {
|
|||||||
|
|
||||||
$('#contextual-help-wrap').slideToggle('fast', function() {
|
$('#contextual-help-wrap').slideToggle('fast', function() {
|
||||||
if ( $(this).hasClass('contextual-help-open') ) {
|
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', '');
|
$('#screen-options-link-wrap').css('visibility', '');
|
||||||
$(this).removeClass('contextual-help-open');
|
$(this).removeClass('contextual-help-open');
|
||||||
} else {
|
} 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');
|
$(this).addClass('contextual-help-open');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user