MediaWiki:Common.css: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 49: | Line 49: | ||
/* Estilo | /* Estilo base do botão */ | ||
.custom-btn-link { | .custom-btn-link { | ||
display: block; | display: block; | ||
padding: 8px 20px; | padding: 8px 20px; | ||
transition: background 0.2s ease; | transition: background 0.2s ease; | ||
border-radius: 4px; | border-radius: 4px; | ||
text-align: center; | |||
} | |||
/* Forçar a remoção do sublinhado no link e no texto dentro dele */ | |||
a.external.custom-btn-link, | |||
a.custom-btn-link, | |||
.custom-btn-link, | |||
.custom-btn-link:hover, | |||
.custom-btn-link:active, | |||
.custom-btn-link:focus { | |||
text-decoration: none !important; | |||
border-bottom: none !important; | |||
color: #202122 !important; | |||
} | } | ||
/* Efeito Hover: Fundo cinza | /* Efeito Hover: Fundo cinza e garante ZERO sublinhado */ | ||
.custom-btn-link:hover { | .custom-btn-link:hover { | ||
background-color: #eaecf0 !important; | background-color: #eaecf0 !important; | ||
text-decoration: none !important; | text-decoration: none !important; | ||
} | } | ||