From b14b30f9c790e4ffa2039d63966cb88999b2c303 Mon Sep 17 00:00:00 2001 From: Joe Knapper Date: Thu, 18 Jun 2026 17:11:05 +0100 Subject: [PATCH] Remove competing css from actionStatusModal including max-height --- .../labThingsComponents/actionStatusModal.vue | 22 ------------------- 1 file changed, 22 deletions(-) diff --git a/webapp/src/components/labThingsComponents/actionStatusModal.vue b/webapp/src/components/labThingsComponents/actionStatusModal.vue index 899a793b..c890303b 100644 --- a/webapp/src/components/labThingsComponents/actionStatusModal.vue +++ b/webapp/src/components/labThingsComponents/actionStatusModal.vue @@ -125,29 +125,7 @@ export default { margin-right: 5px; } -#status-modal { - max-height: 90vh; // never exceed 90% of viewport height - display: flex; - flex-direction: column; -} - #status-modal h2 { flex: 0 0 auto; // title never shrinks } - -#status-modal .action-log-display { - flex: 1 1 auto; - min-height: 0; -} - -#status-modal .log-wrapper { - flex: 1 1 200px; // prefer 200px, shrink only under pressure - min-height: 2.6em; // floor: one line -} - -#status-modal .log-container { - height: auto; - flex: 1 1 auto; - min-height: 2.6em; -}