|
|
| Line 1: |
Line 1: |
| /* ===== ATRONIA Search - Prevent resize on focus ===== */
| |
|
| |
|
| #p-search .cdx-search-input {
| |
| height: 40px; /* altura fixa */
| |
| border-radius: 20px;
| |
| border: 1px solid #dcdcdc;
| |
| background: #fff;
| |
| box-shadow: none !important;
| |
| outline: none !important;
| |
| }
| |
|
| |
| #p-search .cdx-search-input:focus-within {
| |
| border: 1px solid #dcdcdc !important; /* impede mudança de espessura */
| |
| box-shadow: none !important;
| |
| outline: none !important;
| |
| }
| |
|
| |
| /* impedir qualquer alteração interna */
| |
| #p-search .cdx-text-input__input {
| |
| height: 100%;
| |
| border: none !important;
| |
| outline: none !important;
| |
| box-shadow: none !important;
| |
| background: transparent !important;
| |
| }
| |
|
| |
| /* botão alinhado à mesma altura */
| |
| #p-search .cdx-button {
| |
| height: 100%;
| |
| border-radius: 0;
| |
| }
| |
|
| |
|
|
| |
|