Fix share buttons: Excluir btn-outline de estilos theme.css
PROBLEMA: - Los botones de compartir se mostraban con fondo azul sólido en lugar de outline - theme.css aplicaba background-color: var(--primary-color) a TODOS los .btn SOLUCIÓN: - Modificar selector en theme.css para excluir botones con "outline" en clase - Usar :not([class*="outline"]) para preservar estilos Bootstrap outline Fixes #124 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -314,11 +314,11 @@ textarea {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Buttons */
|
/* Buttons */
|
||||||
button,
|
button:not([class*="outline"]),
|
||||||
.btn,
|
.btn:not([class*="outline"]):not(.btn-close),
|
||||||
input[type="button"],
|
input[type="button"]:not([class*="outline"]),
|
||||||
input[type="submit"],
|
input[type="submit"]:not([class*="outline"]),
|
||||||
input[type="reset"] {
|
input[type="reset"]:not([class*="outline"]) {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: 0.5rem 1rem;
|
padding: 0.5rem 1rem;
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
@@ -338,10 +338,10 @@ input[type="reset"] {
|
|||||||
transition: var(--transition-base);
|
transition: var(--transition-base);
|
||||||
}
|
}
|
||||||
|
|
||||||
button:hover,
|
button:not([class*="outline"]):hover,
|
||||||
.btn:hover,
|
.btn:not([class*="outline"]):not(.btn-close):hover,
|
||||||
input[type="button"]:hover,
|
input[type="button"]:not([class*="outline"]):hover,
|
||||||
input[type="submit"]:hover,
|
input[type="submit"]:not([class*="outline"]):hover,
|
||||||
input[type="reset"]:hover {
|
input[type="reset"]:hover {
|
||||||
background-color: #0b5ed7;
|
background-color: #0b5ed7;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|||||||
Reference in New Issue
Block a user