From bee0a57c562736c2ec32974b0dd95142ced0e0fe Mon Sep 17 00:00:00 2001 From: Oleg Tolochko <143202406+OlegAnTo2000@users.noreply.github.com> Date: Fri, 15 Dec 2023 11:32:59 +0300 Subject: [PATCH] Fix admin area content shift to the right in MODX3 In MODX3, due to positioning content with indentation on the left, the admin shifts to the right. In MODX2 the indentation is 0, so this code fixes the problem in MODX3. --- assets/components/frontendmanager/css/mgr/manager.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/assets/components/frontendmanager/css/mgr/manager.css b/assets/components/frontendmanager/css/mgr/manager.css index 6233fbc..a6d17fa 100644 --- a/assets/components/frontendmanager/css/mgr/manager.css +++ b/assets/components/frontendmanager/css/mgr/manager.css @@ -13,7 +13,9 @@ label[for="modx-resource-template"] + div, display:none !important; } - +#modx-content { + left: 0 !important; +} #modx-action-buttons {top: 0;} -#modx-content {width:100% !important;} \ No newline at end of file +#modx-content {width:100% !important;}