Keep the theme update thickbox from being obscured by the toolbar.
props ParadisePorridge, SergeyBiryukov. fixes #23984. git-svn-id: https://develop.svn.wordpress.org/trunk@24558 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
977c747f43
commit
d8781a4f32
@ -18,6 +18,31 @@ jQuery( function($) {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Theme Browser Thickbox
|
||||||
|
*
|
||||||
|
* Aligns theme browser thickbox.
|
||||||
|
*/
|
||||||
|
var tb_position;
|
||||||
|
jQuery(document).ready( function($) {
|
||||||
|
tb_position = function() {
|
||||||
|
var tbWindow = $('#TB_window'), width = $(window).width(), H = $(window).height(), W = ( 1040 < width ) ? 1040 : width, adminbar_height = 0;
|
||||||
|
|
||||||
|
if ( $('body.admin-bar').length )
|
||||||
|
adminbar_height = 28;
|
||||||
|
|
||||||
|
if ( tbWindow.size() ) {
|
||||||
|
tbWindow.width( W - 50 ).height( H - 45 - adminbar_height );
|
||||||
|
$('#TB_iframeContent').width( W - 50 ).height( H - 75 - adminbar_height );
|
||||||
|
tbWindow.css({'margin-left': '-' + parseInt( ( ( W - 50 ) / 2 ), 10 ) + 'px'});
|
||||||
|
if ( typeof document.body.style.maxWidth != 'undefined' )
|
||||||
|
tbWindow.css({'top': 20 + adminbar_height + 'px','margin-top':'0'});
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
$(window).resize(function(){ tb_position(); });
|
||||||
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Theme Install
|
* Theme Install
|
||||||
*
|
*
|
||||||
|
@ -220,6 +220,8 @@ get_current_screen()->set_help_sidebar(
|
|||||||
$title = __('Themes');
|
$title = __('Themes');
|
||||||
$parent_file = 'themes.php';
|
$parent_file = 'themes.php';
|
||||||
|
|
||||||
|
wp_enqueue_script( 'theme' );
|
||||||
|
|
||||||
require_once(ABSPATH . 'wp-admin/admin-header.php');
|
require_once(ABSPATH . 'wp-admin/admin-header.php');
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
Loading…
Reference in New Issue
Block a user