diff --git a/src/wp-admin/css/customize-controls.css b/src/wp-admin/css/customize-controls.css
index 560d85e..8572066 100644
a
|
b
|
body { |
25 | 25 | |
26 | 26 | #customize-header-actions .button-primary { |
27 | 27 | float: right; |
| 28 | position: relative; |
| 29 | top: -45px; |
28 | 30 | margin-top: 9px; |
| 31 | margin-right: 15px; |
29 | 32 | } |
30 | 33 | |
31 | 34 | #customize-header-actions .spinner { |
32 | 35 | margin-top: 13px; |
33 | 36 | margin-right: 4px; |
| 37 | position: relative; |
| 38 | top: -45px; |
34 | 39 | } |
35 | 40 | |
36 | 41 | .saving #customize-header-actions .spinner { |
… |
… |
body { |
39 | 44 | |
40 | 45 | #customize-header-actions { |
41 | 46 | border-bottom: 1px solid #ddd; |
| 47 | padding-top: 45px; |
| 48 | } |
| 49 | |
| 50 | #customize-header-actions .notice { |
| 51 | margin-top: 1px; |
42 | 52 | } |
43 | 53 | |
44 | 54 | #customize-controls .wp-full-overlay-sidebar-content { |
diff --git a/src/wp-admin/css/themes.css b/src/wp-admin/css/themes.css
index 58ce25a..f080a7d 100644
a
|
b
|
body.full-overlay-active { |
1294 | 1294 | position: absolute; |
1295 | 1295 | left: 0; |
1296 | 1296 | right: 0; |
1297 | | height: 45px; |
1298 | | padding: 0 15px; |
| 1297 | height: 0; |
| 1298 | padding: 0; |
1299 | 1299 | line-height: 45px; |
1300 | 1300 | z-index: 10; |
1301 | 1301 | margin: 0; |
… |
… |
body.full-overlay-active { |
1318 | 1318 | |
1319 | 1319 | .wp-full-overlay-sidebar .wp-full-overlay-sidebar-content { |
1320 | 1320 | position: absolute; |
1321 | | top: 45px; |
| 1321 | top: 160px; |
1322 | 1322 | bottom: 45px; |
1323 | 1323 | left: 0; |
1324 | 1324 | right: 0; |
diff --git a/src/wp-admin/customize.php b/src/wp-admin/customize.php
index 1bc702b..183fc29 100644
a
|
b
|
do_action( 'customize_controls_print_scripts' ); |
125 | 125 | <a class="customize-controls-close" href="<?php echo esc_url( $wp_customize->get_return_url() ); ?>"> |
126 | 126 | <span class="screen-reader-text"><?php _e( 'Cancel' ); ?></span> |
127 | 127 | </a> |
| 128 | <div class="notice is-dismissible error"> |
| 129 | <p><strong>Fatal error:</strong> Allowed memory size of 67108854 bytes exhausted (tried to allocate 30439 bytes)</p> |
| 130 | <button type="button" class="notice-dismiss"><span class="screen-reader-text">Dismiss this notice.</span></button> |
| 131 | </div> |
128 | 132 | </div> |
129 | 133 | |
130 | 134 | <div id="widgets-right" class="wp-clearfix"><!-- For Widget Customizer, many widgets try to look for instances under div#widgets-right, so we have to add that ID to a container div in the Customizer for compat --> |