From 2195b35288419c9b651e3a80bc79a07185aab357 Mon Sep 17 00:00:00 2001 From: admtracksteel Date: Thu, 28 May 2026 19:26:43 +0000 Subject: [PATCH] =?UTF-8?q?Transforma=20bot=C3=B5es=20de=20relat=C3=B3rio?= =?UTF-8?q?=20e=20observa=C3=A7=C3=B5es=20em=20formato=20de=20tag/pill=20a?= =?UTF-8?q?linhados=20na=20sidebar?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/index.html | 45 ++++++++++++++++++++++++--------------------- public/style.css | 42 +++++++++++++++++++++++++----------------- 2 files changed, 49 insertions(+), 38 deletions(-) diff --git a/public/index.html b/public/index.html index b932ede..2051c03 100644 --- a/public/index.html +++ b/public/index.html @@ -65,29 +65,32 @@ - - + +
diff --git a/public/style.css b/public/style.css index 7547a02..52fe4f3 100644 --- a/public/style.css +++ b/public/style.css @@ -2865,33 +2865,41 @@ code { font-weight: 500; } -/* Botão Minhas Observações na sidebar */ +/* Botão Minhas Observações na sidebar em estilo tag/pill */ .btn-observacoes { - display: flex; + display: inline-flex; align-items: center; - gap: 10px; - width: calc(100% - 40px); - margin: 0 auto 8px; - padding: 12px 16px; - background: var(--bg-secondary, #1a1a1a); - border: 1px solid var(--border-light, #262626); - border-radius: 12px; - color: var(--text-secondary, #a3a3a3); - font-size: 0.9rem; + gap: 4px; + background-color: var(--bg-tertiary); + border: 1px solid var(--border-light); + border-radius: 20px; + color: var(--text-secondary); + font-size: 11.5px; font-weight: 500; + padding: 5px 10px; cursor: pointer; - transition: all 0.2s; + white-space: nowrap; + transition: all var(--transition-fast); + font-family: var(--font-sans); + width: auto; + margin: 0; } .btn-observacoes:hover { - background: var(--brand-green, #10a37f); - color: white; - border-color: var(--brand-green, #10a37f); + background-color: var(--bg-accent); + color: var(--text-primary); + border-color: var(--border-light); +} + +#btnEmitirRelatorio:hover { + background: var(--brand-green) !important; + color: white !important; + border-color: var(--brand-green) !important; } .btn-observacoes svg { - width: 20px; - height: 20px; + width: 13px; + height: 13px; flex-shrink: 0; }