diff --git a/CHANGELOG.md b/CHANGELOG.md index 058cf1fbb..4e2b7cc90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +### [7.30.4](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v7.30.3...v7.30.4) (2024-08-27) + + +### Bug Fixes + +* set height to the gallery inside news ([#742](https://github.com/RedTurtle/design-comuni-plone-theme/issues/742)) ([026c4aa](https://github.com/RedTurtle/design-comuni-plone-theme/commit/026c4aa6abdd71b9dd0ee9bf53ae730a56698466)) + + +### Documentation + +* release-log ([#646](https://github.com/RedTurtle/design-comuni-plone-theme/issues/646)) ([b93069a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b93069a04c9e957c927d63a8e63c1cd36b073888)) +* release-log ([#748](https://github.com/RedTurtle/design-comuni-plone-theme/issues/748)) ([d816167](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d816167a3ff4ea5007ad3c3d05087e49f3fce6c4)) + ### [7.30.3](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v7.30.2...v7.30.3) (2024-08-12) diff --git a/RELEASE.md b/RELEASE.md index 1e760521d..6c09a3c90 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -30,6 +30,44 @@ - ... --> +## Versione 7.30.4 (26/08/2024) + +### Fix + +- Sistemato la mancanza di allineamento dentro la galleria d'immagine dentro i content types notizia, evento e luogo. + +## Versione 7.30.3 (12/08/2024) + +### Fix + +- Sistemato la mancanza di allineamento dentro la photogallery + +## Versione 7.29.1 (25/07/2024) + +### Migliorie + +- Aggiunte le date dentro i blocchi elenco. + +### Fix + +- Sistemato errore dentro a draftJS, l'elenco puntato non veniva stilizzato e l'icona del TextSize nella toolbar non si vedeva con il title applicato + +## Versione 7.29.0 (03/07/2024) + +### Migliorie + +- Aggiornamento volto-form-blocks + +### Fix + +- Aggiunto checkbox che espande i sotto-elementi nei filtri di ricerca + +## Versione 7.28.5 (26/06/2024) + +### Migliorie + +- Aggiornamento volto-form-blocks + ## Versione 7.28.4 (25/06/2024) ### Novità diff --git a/package.json b/package.json index 02c017e00..7ad86a457 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "design-comuni-plone-theme", "description": "Volto Theme for Italia design guidelines", "license": "MIT", - "version": "7.30.3", + "version": "7.30.4", "addons": [ "@plone-collective/volto-sentry", "volto-multilingual-widget", diff --git a/theme/ItaliaTheme/Views/_common.scss b/theme/ItaliaTheme/Views/_common.scss index c29da942e..81f7ac8bb 100644 --- a/theme/ItaliaTheme/Views/_common.scss +++ b/theme/ItaliaTheme/Views/_common.scss @@ -287,3 +287,26 @@ dl.trasparenza-fields { } } } + +//Fix for photo gallery alignament +#main-content-section { + .slider-container { + .slick-track { + @media (min-width: #{map-get($grid-breakpoints, sm)}) { + //if the gallery have more than 1 item, this rule will be applied to set alignment + .slick-slide:not(:only-child) { + figure { + picture { + height: 180px; + img { + width: 100%; + height: 100%; + object-fit: cover; + } + } + } + } + } + } + } +}