Update samy.css

This commit is contained in:
2025-11-26 20:12:02 -05:00
parent 93546248fc
commit aad96c44dc

View File

@@ -191,6 +191,7 @@ body {
margin-bottom: 8px; margin-bottom: 8px;
} }
/* Inputs / buttons in password & dropdown areas */
/* Inputs / buttons in password & dropdown areas */ /* Inputs / buttons in password & dropdown areas */
#PasswordContainer, #PasswordContainer,
#dattoRmmContainer { #dattoRmmContainer {
@@ -212,6 +213,7 @@ body {
font-size: 14px; font-size: 14px;
} }
/* Password row: input + GO button on one line */
#PasswordContainer > div { #PasswordContainer > div {
display: flex; display: flex;
gap: 6px; gap: 6px;
@@ -222,18 +224,27 @@ body {
min-width: 0; min-width: 0;
} }
/* Dropdown fills the whole panel width */
#dattoRmmContainer select {
width: 100%;
box-sizing: border-box;
}
/* GO button styling */
#PasswordContainer button, #PasswordContainer button,
.go-button { .go-button {
background-color: var(--btn-sidebar-blue); background-color: var(--btn-sidebar-blue);
cursor: pointer; cursor: pointer;
transition: background-color 0.3s ease; transition: background-color 0.3s ease, transform 0.1s ease;
} }
#PasswordContainer button:hover, #PasswordContainer button:hover,
.go-button:hover { .go-button:hover {
background-color: var(--btn-hover); background-color: var(--btn-hover);
transform: scale(1.03);
} }
/* Tag line */ /* Tag line */
.tagline { .tagline {
font-size: 1.2rem; font-size: 1.2rem;