From d86bb8f19f63ddbc42f79ebacfd159b56686d277 Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Mon, 7 Jul 2025 14:50:38 -0700 Subject: [PATCH] refactor: enhance header responsiveness - Added gap and padding to the textarea for improved layout. - Changed height to min-height to maintain legacy compatibility while allowing for responsive design. This change aims to improve the visual appearance and usability of text areas in the web interface. No further changes are pending for this task. --- emhttp/plugins/dynamix/styles/default-base.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/emhttp/plugins/dynamix/styles/default-base.css b/emhttp/plugins/dynamix/styles/default-base.css index 6db64efd5..d99a7b740 100644 --- a/emhttp/plugins/dynamix/styles/default-base.css +++ b/emhttp/plugins/dynamix/styles/default-base.css @@ -417,14 +417,17 @@ textarea { -webkit-box-align: center; -ms-flex-align: center; align-items: center; + gap: 1rem; width: 100%; - height: 91px; + min-height: 91px; /* legacy carry over from before responsive webgui */ z-index: 102; margin: 0; color: var(--inverse-text-color); background-color: var(--header-background-color); background-size: 100% 90px; background-repeat: no-repeat; + padding: 1rem; + box-sizing: border-box; } #header unraid-user-profile {