From e5881e9b60c3f4c73182432781474e4b1e80ca1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81?= Date: Wed, 13 May 2026 20:17:20 +0200 Subject: [PATCH] fix al hover del boton de facturas donde esta el numero --- src/styles/facturas.css | 34 +++++++++++++++++++++++++--------- 1 file changed, 25 insertions(+), 9 deletions(-) diff --git a/src/styles/facturas.css b/src/styles/facturas.css index 4b0e0e2..96d395c 100644 --- a/src/styles/facturas.css +++ b/src/styles/facturas.css @@ -179,23 +179,39 @@ /* Clickable invoice number */ .btn-invoice-num { - background: none; - border: none; + appearance: none; + -webkit-appearance: none; + background: none !important; + border: none !important; + outline: none !important; + box-shadow: none !important; cursor: pointer; - font-weight: 600; + font-weight: 500; font-size: 13px; - color: var(--primary); + color: var(--text-primary); padding: 0; + margin: 0; font-family: inherit; - text-decoration: underline; - text-underline-offset: 2px; - text-decoration-color: transparent; - transition: text-decoration-color var(--transition-fast), color var(--transition-fast); + line-height: inherit; + transition: color var(--transition-fast); +} + +.btn-invoice-num:hover, +.btn-invoice-num:focus, +.btn-invoice-num:focus-visible, +.btn-invoice-num:active { + background: none !important; + border: none !important; + outline: none !important; + box-shadow: none !important; + color: var(--text-primary); } .btn-invoice-num:hover { + color: var(--primary) !important; + text-decoration: underline; text-decoration-color: var(--primary); - color: var(--primary-hover); + text-underline-offset: 3px; } .invoice-number { font-weight: 500; color: var(--text-primary); }