From 485c10d6352d805d39cfd7fc11f77fcb920392c5 Mon Sep 17 00:00:00 2001 From: FrankZamora Date: Fri, 7 Nov 2025 11:48:54 -0600 Subject: [PATCH] Revert "Fix share buttons: Excluir btn-outline de estilos theme.css" This reverts commit ce4f31b4b113df6cd64ed2735f35945afdb4610d. --- .../themes/apus-theme/assets/css/theme.css | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/wp-content/themes/apus-theme/assets/css/theme.css b/wp-content/themes/apus-theme/assets/css/theme.css index 17d54b6e..acaf7852 100644 --- a/wp-content/themes/apus-theme/assets/css/theme.css +++ b/wp-content/themes/apus-theme/assets/css/theme.css @@ -314,11 +314,11 @@ textarea { } /* Buttons */ -button:not([class*="outline"]), -.btn:not([class*="outline"]):not(.btn-close), -input[type="button"]:not([class*="outline"]), -input[type="submit"]:not([class*="outline"]), -input[type="reset"]:not([class*="outline"]) { +button, +.btn, +input[type="button"], +input[type="submit"], +input[type="reset"] { display: inline-block; padding: 0.5rem 1rem; font-family: inherit; @@ -338,10 +338,10 @@ input[type="reset"]:not([class*="outline"]) { transition: var(--transition-base); } -button:not([class*="outline"]):hover, -.btn:not([class*="outline"]):not(.btn-close):hover, -input[type="button"]:not([class*="outline"]):hover, -input[type="submit"]:not([class*="outline"]):hover, +button:hover, +.btn:hover, +input[type="button"]:hover, +input[type="submit"]:hover, input[type="reset"]:hover { background-color: #0b5ed7; text-decoration: none;