Files
hub-insurance/wp-content/plugins/admin-site-enhancements/includes/admin-menu-width/wp-v4-greater.php
T
2026-07-02 15:54:39 -06:00

39 lines
1.0 KiB
PHP

<?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>