MediaWiki:Common.css: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 48: | Line 48: | ||
/* Remove o sublinhado de forma agressiva */ | |||
.mw-parser-output a.custom-btn-link, | |||
.mw-parser-output a.custom-btn-link:hover, | |||
.mw-parser-output a.custom-btn-link:focus { | |||
text-decoration: none !important; | |||
text-decoration-line: none !important; | |||
border-bottom: none !important; | |||
box-shadow: none !important; | |||
color: #202122 !important; | |||
} | |||
/* Estilo base do botão */ | /* Estilo base do botão */ | ||
| Line 56: | Line 69: | ||
border-radius: 4px; | border-radius: 4px; | ||
text-align: center; | text-align: center; | ||
background: transparent; | |||
} | } | ||
/* Efeito Hover: Fundo cinza */ | |||
/* Efeito Hover: Fundo cinza | |||
.custom-btn-link:hover { | .custom-btn-link:hover { | ||
background-color: #eaecf0 !important; | background-color: #eaecf0 !important; | ||
} | } | ||
Revision as of 12:39, 13 March 2026
.products-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 30px;
margin-top: 20px;
}
.product-item {
text-align: center;
}
.product-image {
display: block;
margin: 0 auto 10px;
}
.product-title {
font-weight: 600;
margin-top: 6px;
}
.product-subtitle {
font-size: 14px;
color: #666;
}
.product-item strong {
display: block;
}
.product-subtitle {
display: block;
}
/* Impedir que o item ativo no índice mude para negrito durante o scroll */
.vector-toc-list-item-active > .vector-toc-link .vector-toc-text {
font-weight: normal !important;
}
/* Garante que o título do Datasheet e outros itens mantenham a consistência */
.vector-toc-link .vector-toc-text {
font-weight: normal !important;
}
/* Remove o sublinhado de forma agressiva */
.mw-parser-output a.custom-btn-link,
.mw-parser-output a.custom-btn-link:hover,
.mw-parser-output a.custom-btn-link:focus {
text-decoration: none !important;
text-decoration-line: none !important;
border-bottom: none !important;
box-shadow: none !important;
color: #202122 !important;
}
/* Estilo base do botão */
.custom-btn-link {
display: block;
padding: 8px 20px;
transition: background 0.2s ease;
border-radius: 4px;
text-align: center;
background: transparent;
}
/* Efeito Hover: Fundo cinza */
.custom-btn-link:hover {
background-color: #eaecf0 !important;
}