diff --git a/RELEASE.md b/RELEASE.md index d490c2aa5..0fa06677d 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -30,6 +30,12 @@ - ... --> +## Versione X.X.X (dd/mm/yyyy) + +### Fix + +- I bottoni per filtro percorso nel blocco Elenco hanno ora un contrasto corretto all'hover del mouse. + ## Versione 7.25.3 (07/03/2024) ### Migliorie diff --git a/theme/ItaliaTheme/Blocks/_listing.scss b/theme/ItaliaTheme/Blocks/_listing.scss index c644ff401..7daae1bbe 100644 --- a/theme/ItaliaTheme/Blocks/_listing.scss +++ b/theme/ItaliaTheme/Blocks/_listing.scss @@ -35,4 +35,13 @@ } } } + + // * hover bottoni filtri percorso + .path-filter-buttons { + button.btn.btn-outline-primary:hover { + background-color: $primary; + color: #fff; + box-shadow: inset 0 0 0 2px $primary; + } + } }