From aad96c44dc64b1929197214012649bffd8b2f4a1 Mon Sep 17 00:00:00 2001 From: Stephan Yelle Date: Wed, 26 Nov 2025 20:12:02 -0500 Subject: [PATCH] Update samy.css --- samy.css | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/samy.css b/samy.css index 0a73b37..d5d73b3 100644 --- a/samy.css +++ b/samy.css @@ -191,6 +191,7 @@ body { margin-bottom: 8px; } +/* Inputs / buttons in password & dropdown areas */ /* Inputs / buttons in password & dropdown areas */ #PasswordContainer, #dattoRmmContainer { @@ -212,6 +213,7 @@ body { font-size: 14px; } +/* Password row: input + GO button on one line */ #PasswordContainer > div { display: flex; gap: 6px; @@ -222,18 +224,27 @@ body { min-width: 0; } +/* Dropdown fills the whole panel width */ +#dattoRmmContainer select { + width: 100%; + box-sizing: border-box; +} + +/* GO button styling */ #PasswordContainer button, .go-button { background-color: var(--btn-sidebar-blue); cursor: pointer; - transition: background-color 0.3s ease; + transition: background-color 0.3s ease, transform 0.1s ease; } #PasswordContainer button:hover, .go-button:hover { background-color: var(--btn-hover); + transform: scale(1.03); } + /* Tag line */ .tagline { font-size: 1.2rem;