initial
This commit is contained in:
+39
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
if ( ! is_rtl() ) {
|
||||
$margin_property = 'margin-left';
|
||||
$position = 'left';
|
||||
} else {
|
||||
$margin_property = 'margin-right';
|
||||
$position = 'right';
|
||||
}
|
||||
|
||||
?>
|
||||
<style>
|
||||
|
||||
#wpcontent, #wpfooter {
|
||||
<?php echo esc_html( esc_html( $margin_property ) ); ?>: <?php echo esc_html( $custom_width ); ?>;
|
||||
}
|
||||
#adminmenuback, #adminmenuwrap, #adminmenu, #adminmenu .wp-submenu {
|
||||
width: <?php echo esc_html( $custom_width ); ?>;
|
||||
}
|
||||
#adminmenu .wp-submenu {
|
||||
<?php echo esc_html( $position ); ?>: <?php echo esc_html( $custom_width ); ?>;
|
||||
}
|
||||
#adminmenu .wp-not-current-submenu .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu {
|
||||
min-width: <?php echo esc_html( $custom_width ); ?>;
|
||||
}
|
||||
|
||||
/* WooCommerce header fix */
|
||||
.woocommerce-layout__header,
|
||||
/* Elementor Settings */
|
||||
#e-admin-top-bar-root {
|
||||
width: calc(100% - <?php echo esc_html( $custom_width ); ?>);
|
||||
}
|
||||
|
||||
/* Gutenberg / Block Editor fix */ /* Elementor Settings */
|
||||
.auto-fold .interface-interface-skeleton {
|
||||
<?php echo esc_html( $position ); ?>: <?php echo esc_html( $custom_width ); ?>;
|
||||
}
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user