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 <noreply@anthropic.com>
55 lines
1.1 KiB
CSS
55 lines
1.1 KiB
CSS
/**
|
|
* CTA A/B Testing Styles
|
|
*
|
|
* CSS EXACTO copiado del template style.css (líneas 835-865)
|
|
* Sin extras, sin !important innecesario, sin media queries complicadas
|
|
*
|
|
* @package APUS_Theme
|
|
* @since 1.0.2
|
|
*/
|
|
|
|
.cta-section {
|
|
background: linear-gradient(135deg, var(--color-orange-primary) 0%, var(--color-orange-light) 100%);
|
|
box-shadow: 0 8px 24px rgba(255, 133, 0, 0.3);
|
|
border-radius: 12px;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.cta-section h3 {
|
|
color: #ffffff !important;
|
|
}
|
|
|
|
.cta-section p {
|
|
color: rgba(255, 255, 255, 0.95) !important;
|
|
}
|
|
|
|
.cta-button {
|
|
background-color: var(--color-orange-primary);
|
|
color: #ffffff;
|
|
font-weight: 600;
|
|
padding: 0.75rem 2rem;
|
|
border: none;
|
|
border-radius: 8px;
|
|
transition: all 0.3s ease;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
}
|
|
|
|
.cta-button:hover {
|
|
background-color: var(--color-orange-hover);
|
|
color: #ffffff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* Responsive Mobile */
|
|
@media (max-width: 768px) {
|
|
.cta-section {
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
.cta-button {
|
|
width: 100%;
|
|
margin-top: 1rem;
|
|
}
|
|
}
|