From 463cff8d6383e229c44de18437bf97077cc23007 Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Wed, 25 Jun 2025 16:42:02 -0700 Subject: [PATCH] style: enforce minimum width for non-responsive content - Added a min-width of 1200px to the .Content--non-responsive class in default-base.css to prevent rewrites of complex page templates for responsive layout. --- emhttp/plugins/dynamix/styles/default-base.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/emhttp/plugins/dynamix/styles/default-base.css b/emhttp/plugins/dynamix/styles/default-base.css index da5bb0963..c0e5ac9ea 100644 --- a/emhttp/plugins/dynamix/styles/default-base.css +++ b/emhttp/plugins/dynamix/styles/default-base.css @@ -1312,6 +1312,11 @@ a.list { } } +/* Necessary evil to prevent rewrites of complex page templates for responsive layout - i.e. VMedit.php */ +.Content--non-responsive { + min-width: 1200px; +} + .tabs { display: flex; align-items: center;