From 096c589e2f7468f638f5bfa767d82be134745b86 Mon Sep 17 00:00:00 2001 From: Giulia Ghisini Date: Wed, 19 Feb 2025 14:15:18 +0100 Subject: [PATCH 1/2] fix: prevent scrollbars in select-facet of search block --- RELEASE.md | 6 ++++++ src/theme/ItaliaTheme/Blocks/_search.scss | 10 ++++++++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index 258658e38..e1261e1ac 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -41,6 +41,12 @@ - ... --> +## Versione x.x.x (xx/xx/xxxx) + +### Fix + +- rimosse le scrollbar dal widget 'Select' dei filtri di ricerca del blocco 'Cerca' + ## Versione 11.26.5 (06/02/2025) ### Migliorie diff --git a/src/theme/ItaliaTheme/Blocks/_search.scss b/src/theme/ItaliaTheme/Blocks/_search.scss index b5491d6d9..8ba12eb90 100644 --- a/src/theme/ItaliaTheme/Blocks/_search.scss +++ b/src/theme/ItaliaTheme/Blocks/_search.scss @@ -129,6 +129,10 @@ div[class*='-placeholder'] { color: #484848; } + + input { + height: 100%; + } } } } @@ -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); } From 920a098e74c3d5cb7bff2c734bab197d7fd05fa8 Mon Sep 17 00:00:00 2001 From: Piero Nicolli Date: Mon, 24 Feb 2025 09:51:03 +0100 Subject: [PATCH 2/2] Update RELEASE.md --- RELEASE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASE.md b/RELEASE.md index e1261e1ac..2804437b7 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -45,7 +45,7 @@ ### Fix -- rimosse le scrollbar dal widget 'Select' dei filtri di ricerca del blocco 'Cerca' +- Rimosse le scrollbar dal widget 'Select' dei filtri di ricerca del blocco 'Cerca'. ## Versione 11.26.5 (06/02/2025)