From 613ffb394ce72473bdac6f17763259b908f7a3a5 Mon Sep 17 00:00:00 2001 From: SowinskiBraeden Date: Sat, 21 Mar 2026 01:22:44 -0700 Subject: [PATCH] update reopen css --- static/css/style.css | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/static/css/style.css b/static/css/style.css index b4b6f3c..890d74b 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -963,6 +963,43 @@ td a:hover { text-transform: uppercase; } +.inline-action-form { + margin: 0; +} + +.table-action-button { + appearance: none; + border: 1px solid rgba(255, 255, 255, 0.12); + background: rgba(255, 255, 255, 0.05); + color: var(--text-strong); + border-radius: 10px; + padding: 0.45rem 0.72rem; + font: inherit; + font-size: 0.88rem; + font-weight: 600; + line-height: 1; + cursor: pointer; + transition: + background 140ms ease, + border-color 140ms ease, + transform 140ms ease; +} + +.table-action-button:hover { + background: rgba(255, 166, 77, 0.12); + border-color: rgba(255, 166, 77, 0.28); +} + +.table-action-button:active { + transform: translateY(1px); +} + +.table-action-button:focus-visible { + outline: none; + box-shadow: 0 0 0 3px rgba(255, 166, 77, 0.18); + border-color: rgba(255, 166, 77, 0.35); +} + @media (max-width: 980px) { .site-shell { width: min(100% - 24px, 100%);