CRÍTICO: Eliminar TODAS las reglas .btn de theme.css
PROBLEMA ROOT CAUSE FINAL: theme.css tenía MÚLTIPLES reglas sobrescribiendo Bootstrap: - .btn y button (background-color global) - .btn:focus, button:focus (box-shadow) - .btn:disabled, button:disabled (opacity) - .btn-secondary, .btn-success, .btn-danger, etc. (colores) - .btn-sm, .btn-lg (tamaños) TODAS estas reglas sobrescribían btn-outline de Bootstrap SOLUCIÓN DEFINITIVA: - ELIMINADAS todas las reglas globales .btn y button - ELIMINADAS todas las variantes .btn-* - ELIMINADOS tamaños .btn-sm y .btn-lg - Mantener SOLO estilos para inputs SIN clases btn - Bootstrap maneja TODO lo relacionado con botones Archivos modificados: - assets/css/theme.css (eliminadas ~80 líneas de CSS) RESULTADO: Bootstrap btn-outline-* funciona SIN interferencia Fixes #124 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -1051,9 +1051,7 @@ img {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
/* ========================================
|
||||
SHARE BUTTONS
|
||||
======================================== */
|
||||
/* === SHARE BUTTONS === */
|
||||
|
||||
.share-buttons .btn {
|
||||
transition: all 0.3s ease;
|
||||
|
||||
Reference in New Issue
Block a user