Jump to content

MediaWiki:Mobile.css: Difference between revisions

From ATRONIA Wiki
No edit summary
No edit summary
Line 8: Line 8:




/* Remove o fundo e a borda do botão de busca no mobile */
/* Alvo específico para remover background e a borda esquerda do botão de busca */
.vector-header-end #p-search .cdx-button.cdx-button--fake-button {
.cdx-button.cdx-button--fake-button.cdx-button--enabled.cdx-button--weight-quiet.cdx-button--icon-only.search-toggle {
     background-color: transparent !important;
     background-color: transparent !important;
     background: transparent !important;
     background: none !important;
    border-left: none !important;
     border: none !important;
     border: none !important;
     box-shadow: none !important;
     box-shadow: none !important;
}
}


/* Garante que o ícone da lupa fique visível (branco ou verde) */
/* Garante que o ícone da lupa fique visível sobre o fundo escuro */
.vector-header-end #p-search .vector-icon {
.cdx-button.cdx-button--fake-button.cdx-button--enabled.cdx-button--weight-quiet.cdx-button--icon-only.search-toggle .vector-icon {
     color: #ccff00 !important; /* Verde ATRONIA */
     color: #ccff00 !important; /* Verde ATRONIA */
}
}


/* Remove o efeito de fundo quando clicas no botão (active/hover) */
/* Remove a borda esquerda do container da busca que o MediaWiki adiciona no mobile */
.vector-header-end #p-search .cdx-button:hover,
.vector-search-box-vue {
.vector-header-end #p-search .cdx-button:active,
     border-left: none !important;
.vector-header-end #p-search .cdx-button:focus {
     background-color: transparent !important;
    color: #ffffff !important;
}
}

Revision as of 15:05, 26 March 2026

/* All CSS here will be loaded for users of the mobile site */








/* Alvo específico para remover background e a borda esquerda do botão de busca */
.cdx-button.cdx-button--fake-button.cdx-button--enabled.cdx-button--weight-quiet.cdx-button--icon-only.search-toggle {
    background-color: transparent !important;
    background: none !important;
    border-left: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Garante que o ícone da lupa fique visível sobre o fundo escuro */
.cdx-button.cdx-button--fake-button.cdx-button--enabled.cdx-button--weight-quiet.cdx-button--icon-only.search-toggle .vector-icon {
    color: #ccff00 !important; /* Verde ATRONIA */
}

/* Remove a borda esquerda do container da busca que o MediaWiki adiciona no mobile */
.vector-search-box-vue {
    border-left: none !important;
}