From 35888400edd238047fcfaae221eaa99680c3ddf3 Mon Sep 17 00:00:00 2001 From: Gabriele Cimaschi Date: Tue, 11 Aug 2026 08:25:06 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20la=20pressione=20del=20pulsante=20di=20c?= =?UTF-8?q?hiusura=20dei=20ticket=20nel=20gruppo=20'chiudi=20a=20fine=20gi?= =?UTF-8?q?ornata'=20non=20provoca=20pi=C3=B9=20l'attivazione=20dell'azion?= =?UTF-8?q?e=20di=20consuntivazione=20a=20fine=20giornata?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/css/style.css | 19 +++++++++++ public/index.html | 16 +++++++-- public/js/app.js | 31 +++++++++++++++++ routes/groups.js | 80 +++++++++++++++++++++++++++++++++++++++++++- 4 files changed, 142 insertions(+), 4 deletions(-) diff --git a/public/css/style.css b/public/css/style.css index 92b6719..c952a9f 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -354,6 +354,25 @@ body { letter-spacing: -0.02em; } +.btn-brand-action { + background: transparent; + border: 1px solid transparent; + color: var(--text-secondary); + cursor: pointer; + padding: 4px 6px; + border-radius: var(--radius-sm); + display: inline-flex; + align-items: center; + justify-content: center; + transition: all var(--transition-fast); +} + +.btn-brand-action:hover { + color: var(--error); + background: var(--error-bg); + border-color: rgba(220, 38, 38, 0.2); +} + .nav-menu { list-style: none; padding: var(--space-md); diff --git a/public/index.html b/public/index.html index a0ef817..796b208 100644 --- a/public/index.html +++ b/public/index.html @@ -18,9 +18,19 @@