diff --git a/testTaskGate.ps1 b/testTaskGate.ps1 index 5d18c2b..a5b1674 100644 --- a/testTaskGate.ps1 +++ b/testTaskGate.ps1 @@ -378,10 +378,12 @@ $style = @' color: var(--white-color); } + /* Specific overrides */ .exit-button { background-color: var(--btn-danger); } + /* Specific overrides */ .run-button { background-color: var(--btn-success); } @@ -419,6 +421,7 @@ $style = @' margin-top: 1em; } + /* Common styles for inputs, buttons, and selects */ #PasswordContainer input, #PasswordContainer button, #dattoRmmContainer select { @@ -430,19 +433,22 @@ $style = @' font-size: 14px; display: block; width: 40%; - max-width: 200px; /* controls how wide they get */ + max-width: 200px; } + /* Style specifically for the fetch button */ #PasswordContainer button { - background-color: var(--btn-danger); + background-color: var(--btn-sidebar-blue); cursor: pointer; transition: background-color 0.3s ease; } + /* Hover effect for the fetch button */ #PasswordContainer button:hover { - background-color: #ff4c4c; + background-color: var(--btn-hover); } + @media (max-width:768px) { .container { flex-direction:column; } .sidebar { width:100%; }