Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: prevent scrollbars in select-facet of search block #883

Merged
merged 3 commits into from
Feb 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
- Aggiunta una nuova condizione per la corretta compilazione dell’attributo **alt** e **title** nelle immagini dei blocchi listing. Ora questi attributi utilizzano correttamente i testi delle didascalie dell'immagine di anteprima o testata se impostati. L'attributo **title** viene valorizzato solo se esiste una didascalia associata all’immagine.
- Rimosso l’attributo **showTitleAttr** dal componente _ListingImage_ utilizzato nei template del blocco listing: card con immagine, persona, blocco link completo, contenuto in evidenza, gallery a griglia, e in evidenza. Ora gli attributi **title** e **alt** vengono calcolati e impostati direttamente dal componente _ListingImage_.
- Condizione per la Label per i select ripristinata.
- Rimosse le scrollbar dal widget 'Select' dei filtri di ricerca del blocco 'Cerca'.

## Versione 11.26.5 (06/02/2025)

Expand Down
10 changes: 8 additions & 2 deletions src/theme/ItaliaTheme/Blocks/_search.scss
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,10 @@
div[class*='-placeholder'] {
color: #484848;
}

input {
height: 100%;
}
}
}
}
Expand All @@ -151,13 +155,15 @@
border-color: hsl(210deg, 17.6470588235%, 43.35%) !important;
border-bottom: 1px solid;
font-size: 1rem;
transition: border-color 0.3s ease-in,
transition:
border-color 0.3s ease-in,
background-color 0.2s cubic-bezier(0, 1, 0, 1) 0.2s;

&[aria-expanded='true'] {
border-color: transparent !important;
box-shadow: 0 1rem 2rem -0.25rem rgba(0, 0, 0, 0.15) !important;
transition: background-color 0.2s cubic-bezier(0, 1, 0, 1),
transition:
background-color 0.2s cubic-bezier(0, 1, 0, 1),
border-color 0.05s cubic-bezier(1, 0, 1, 0);
}

Expand Down
Loading