From ff3fb53282288081ef9fbccf1524eac65a16dfe6 Mon Sep 17 00:00:00 2001 From: FrankZamora Date: Sat, 8 Nov 2025 18:29:27 -0600 Subject: [PATCH] Fix CTA Button: Eliminar underline en hover - Issue #126 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PROBLEMA: - Botón CTA mostraba underline en hover - Estilo global a:hover { text-decoration: underline; } se aplicaba - .cta-button:hover NO sobrescribía text-decoration CAUSA RAÍZ: - style.css línea 249: a:hover { text-decoration: underline; } - .cta-button tiene text-decoration: none en estado normal - .cta-button:hover NO tenía text-decoration: none - Resultado: underline aparecía en hover SOLUCIÓN: - Agregar text-decoration: none a .cta-button:hover - Sobrescribe estilo global de links - Mantiene botón sin underline en hover CAMBIOS: - componente-cta-ab-testing.css línea 41: + text-decoration: none; - Version 1.0.14 -> 1.0.15 RESULTADO: - Botón CTA sin underline en normal y hover - Color fondo cambia en hover (naranja claro -> oscuro) - Color texto permanece blanco Testing: Verificar hover sin underline en staging 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../themes/apus-theme/assets/css/componente-cta-ab-testing.css | 1 + wp-content/themes/apus-theme/functions.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-content/themes/apus-theme/assets/css/componente-cta-ab-testing.css b/wp-content/themes/apus-theme/assets/css/componente-cta-ab-testing.css index d484192f..c990ec90 100644 --- a/wp-content/themes/apus-theme/assets/css/componente-cta-ab-testing.css +++ b/wp-content/themes/apus-theme/assets/css/componente-cta-ab-testing.css @@ -38,6 +38,7 @@ .cta-button:hover { background-color: var(--color-orange-hover); color: #ffffff; + text-decoration: none; } /* Responsive Mobile */ diff --git a/wp-content/themes/apus-theme/functions.php b/wp-content/themes/apus-theme/functions.php index fa1f05b9..7ec25c3e 100644 --- a/wp-content/themes/apus-theme/functions.php +++ b/wp-content/themes/apus-theme/functions.php @@ -14,7 +14,7 @@ if (!defined('ABSPATH')) { /** * Theme Version */ -define('APUS_VERSION', '1.0.14'); +define('APUS_VERSION', '1.0.15'); /** * Theme Setup