Update testTaskGate.ps1

This commit is contained in:
2025-05-26 22:43:56 -04:00
parent ac4e1cfe82
commit c75db73153

View File

@@ -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%; }