From 260c1196791e128aea77d5e51d78e34b755631e5 Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Thu, 22 May 2025 12:42:08 -0700 Subject: [PATCH] fix: enhance layout consistency in default-base.css - Added width: 100% and box-sizing: border-box to pre elements for improved layout handling. - Updated box-sizing for dd elements to ensure consistent sizing across different contexts. - This change continues the effort to enhance visual consistency across the plugin. --- emhttp/plugins/dynamix/styles/default-base.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/emhttp/plugins/dynamix/styles/default-base.css b/emhttp/plugins/dynamix/styles/default-base.css index 4ac2ebe54..2eb6a4c05 100644 --- a/emhttp/plugins/dynamix/styles/default-base.css +++ b/emhttp/plugins/dynamix/styles/default-base.css @@ -1476,6 +1476,8 @@ pre { line-height: 1.8rem; padding: 4px 6px; overflow: auto; + width: 100%; + box-sizing: border-box; } iframe#progressFrame { position: fixed; @@ -1513,7 +1515,7 @@ dt { dd { margin: 0; white-space: normal; - overflow-x: auto; + box-sizing: border-box; p { margin: 0 0 4px 0;