Jump to content

MediaWiki:Vector-2022.css: Difference between revisions

No edit summary
No edit summary
Line 1: Line 1:
/* ===== ATRONIA Search Final Stable Version ===== */
/* ===== ATRONIA Search Clean & Stable ===== */ #p-search .cdx-search-input { border-radius: 14px; overflow: hidden; border: 1px solid #dcdcdc; background: #ffffff; transition: border-color 0.2s ease, box-shadow 0.2s ease; } /* remove estilos internos que causam "salto" */ #p-search .cdx-text-input__input { border: none !important; background: transparent !important; box-shadow: none !important; } /* BOTÃO SEARCH */ #p-search .cdx-button { background: #ffffff; color: #1B2826; border-left: 1px solid #e0e0e0; border-radius: 0; transition: background 0.2s ease, color 0.2s ease; } /* hover legível */ #p-search .cdx-button:hover { background: #92ff00; color: #1B2826; }
 
#p-search .cdx-search-input {
    height: 40px;                    /* altura fixa */
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #dcdcdc;
    background: #ffffff;
    box-shadow: none !important;
    outline: none !important;
    transition: none !important;      /* evita animação que causa "salto" */
}
 
#p-search .cdx-search-input:focus-within {
    border: 1px solid #dcdcdc !important;
    box-shadow: none !important;
    outline: none !important;
}
 
/* input interno */
#p-search .cdx-text-input__input {
    height: 100%;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}
 
/* botão */
#p-search .cdx-button {
    height: 100%;
    background: #ffffff;
    color: #1B2826;
    border-left: 1px solid #e0e0e0;
    border-radius: 0;
    transition: background 0.2s ease, color 0.2s ease;
}
 
#p-search .cdx-button:hover {
    background: #92ff00;
    color: #1B2826;
}