mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 12:20:22 +00:00
Theme Customizer: Move contents of customize.loader.css to wp-admin.css. Make markup/CSS for the full-screen overlay modular. see #19910.
git-svn-id: https://develop.svn.wordpress.org/trunk@20133 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -43,14 +43,14 @@ do_action( 'customize_controls_print_styles' );
|
||||
do_action( 'customize_controls_print_scripts' );
|
||||
?>
|
||||
</head>
|
||||
<body>
|
||||
<form id="customize-controls" method="post" class="wrap" target="_parent" action="<?php echo esc_url( add_query_arg( 'save', '1', admin_url( 'themes.php' ) ) ); ?>">
|
||||
<body class="wp-full-overlay">
|
||||
<form id="customize-controls" method="post" class="wrap wp-full-overlay-sidebar" target="_parent" action="<?php echo esc_url( add_query_arg( 'save', '1', admin_url( 'themes.php' ) ) ); ?>">
|
||||
<?php wp_nonce_field( 'customize_controls' ); ?>
|
||||
<input type="hidden" name="customize" value="on" />
|
||||
<input type="hidden" id="customize-template" name="template" value="<?php echo esc_attr( $theme['Template'] ); ?>" />
|
||||
<input type="hidden" id="customize-stylesheet" name="stylesheet" value="<?php echo esc_attr( $theme['Stylesheet'] ); ?>" />
|
||||
|
||||
<div id="customize-header-actions" class="customize-section"> </div>
|
||||
<div id="customize-header-actions" class="customize-section wp-full-overlay-header"> </div>
|
||||
|
||||
<div id="customize-info" class="customize-section">
|
||||
<div class="customize-section-title">
|
||||
@@ -78,13 +78,13 @@ do_action( 'customize_controls_print_scripts' );
|
||||
?>
|
||||
</ul></div>
|
||||
|
||||
<div id="customize-footer-actions" class="customize-section">
|
||||
<div id="customize-footer-actions" class="customize-section wp-full-overlay-footer">
|
||||
<?php
|
||||
submit_button( __( 'Save' ), 'primary', 'save', false );
|
||||
?>
|
||||
</div>
|
||||
</form>
|
||||
<div id="customize-preview">
|
||||
<div id="customize-preview" class="wp-full-overlay-main">
|
||||
<iframe name="customize-target"></iframe>
|
||||
</div>
|
||||
<?php
|
||||
|
||||
Reference in New Issue
Block a user