From c71f2e6f448fc15d6a6c5f1d1893389a56c49098 Mon Sep 17 00:00:00 2001 From: Stephan Yelle Date: Mon, 26 May 2025 22:13:28 -0400 Subject: [PATCH] Update testTaskGate.ps1 --- testTaskGate.ps1 | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/testTaskGate.ps1 b/testTaskGate.ps1 index fc108dc..99965d5 100644 --- a/testTaskGate.ps1 +++ b/testTaskGate.ps1 @@ -419,6 +419,27 @@ $style = @' margin-top: 1em; } + #PasswordContainer input, + #PasswordContainer button, + #dattoRmmContainer select { + background-color: var(--dark-gray-color); + color: var(--white-color); + border: 1px solid var(--border-color); + border-radius: 4px; + padding: 8px; + font-size: 14px; + } + + #PasswordContainer button { + background-color: var(--btn-danger); + cursor: pointer; + transition: background-color 0.3s ease; + } + + #PasswordContainer button:hover { + background-color: #ff4c4c; + } + @media (max-width:768px) { .container { flex-direction:column; } .sidebar { width:100%; }