Jump to content

MediaWiki:Mobile.css: Difference between revisions

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




 
/* Ataca pelo ID para ganhar a prioridade máxima do navegador */
 
#p-search .cdx-button.cdx-button--fake-button,
 
#p-search .cdx-button.cdx-button--fake-button:active,
 
#p-search .cdx-button.cdx-button--fake-button:hover,
 
#p-search .cdx-button.cdx-button--fake-button:focus {
/* 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-color: transparent !important;
     background: none !important;
     background: transparent !important;
    border: none !important;
     border-left: none !important;
     border-left: none !important;
    border: none !important;
     box-shadow: none !important;
     box-shadow: none !important;
}
}


/* Garante que o ícone da lupa fique visível sobre o fundo escuro */
/* Força a remoção da borda esquerda no container da lupa */
.cdx-button.cdx-button--fake-button.cdx-button--enabled.cdx-button--weight-quiet.cdx-button--icon-only.search-toggle .vector-icon {
#p-search.vector-search-box-vue {
     color: #ccff00 !important; /* Verde ATRONIA */
     border-left: none !important;
}
}


/* Remove a borda esquerda do container da busca que o MediaWiki adiciona no mobile */
/* Garante que a lupa em si seja visível (Verde ATRONIA) */
.vector-search-box-vue {
#p-search .vector-icon {
     border-left: none !important;
     color: #ccff00 !important;
}
}

Revision as of 15:08, 26 March 2026

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



/* Ataca pelo ID para ganhar a prioridade máxima do navegador */
#p-search .cdx-button.cdx-button--fake-button,
#p-search .cdx-button.cdx-button--fake-button:active,
#p-search .cdx-button.cdx-button--fake-button:hover,
#p-search .cdx-button.cdx-button--fake-button:focus {
    background-color: transparent !important;
    background: transparent !important;
    border: none !important;
    border-left: none !important;
    box-shadow: none !important;
}

/* Força a remoção da borda esquerda no container da lupa */
#p-search.vector-search-box-vue {
    border-left: none !important;
}

/* Garante que a lupa em si seja visível (Verde ATRONIA) */
#p-search .vector-icon {
    color: #ccff00 !important;
}