From d0da011c2d8cd09e81ec1a0f7c59f817795cc05c Mon Sep 17 00:00:00 2001 From: Keep Creating Online <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Sun, 2 Feb 2025 15:40:34 -0500 Subject: [PATCH] update --- .../iframe-content-appeals-form.html | 104 +++++++++++++----- 1 file changed, 77 insertions(+), 27 deletions(-) diff --git a/src/components/iframe_forms/iframe-content-appeals-form.html b/src/components/iframe_forms/iframe-content-appeals-form.html index cbeb1cd..52a49d6 100644 --- a/src/components/iframe_forms/iframe-content-appeals-form.html +++ b/src/components/iframe_forms/iframe-content-appeals-form.html @@ -8,8 +8,10 @@ font-family: Arial, sans-serif; margin: 20px; max-width: 600px; - background-color: rgb(31 41 55 / 0.5); - color: #fff; /* all text in white */ + /* Make the background transparent so it shows page behind */ + background: transparent; + /* Keep text white */ + color: #fff; } label { display: inline-block; @@ -24,9 +26,9 @@ padding: 6px; margin-bottom: 16px; box-sizing: border-box; - background-color: #234566; /* dark blue */ - color: #fff; /* white text inside inputs */ - border: 1px solid #888; /* border color for contrast */ + background-color: #234566; /* dark blue background */ + color: #fff; /* white text */ + border: 1px solid #888; } button { padding: 10px 16px; @@ -41,6 +43,12 @@ p { color: #fff; } + /* Status area styling */ + #status-message { + white-space: pre; /* Preserves line breaks when we append text */ + margin-top: 1em; + font-size: 0.9em; + } @@ -176,7 +184,12 @@


+ +
+