design-comuni-plone-theme 11.30.1 → 11.30.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
 
2
2
 
3
+ ## [11.30.2](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v11.30.1...v11.30.2) (2025-05-07)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * full width and center alignment of video block ([#941](https://github.com/RedTurtle/design-comuni-plone-theme/issues/941)) ([aea6b95](https://github.com/RedTurtle/design-comuni-plone-theme/commit/aea6b95079a33445e15068a4b7ea6582b0831221))
9
+ * multiple location condition in query widget ([#943](https://github.com/RedTurtle/design-comuni-plone-theme/issues/943)) ([ecf637b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ecf637b022de7889f78d5405e7626861bc26ec63))
10
+ * small blocks links image height ([#940](https://github.com/RedTurtle/design-comuni-plone-theme/issues/940)) ([498347a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/498347a637666b87a5e49e1f49dd59545121b79d))
11
+
12
+
13
+ ### Documentation
14
+
15
+ * updated publiccode and release log ([d41b9f1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d41b9f15ca9e71f06bb1067c1eaea56e8633a3e0))
16
+
3
17
  ## [11.30.1](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v11.30.0...v11.30.1) (2025-04-14)
4
18
 
5
19
 
package/RELEASE.md CHANGED
@@ -41,6 +41,13 @@
41
41
  - ...
42
42
  -->
43
43
 
44
+ ## Versione 11.30.2 (07/05/2025)
45
+
46
+ ### Fix
47
+
48
+ - L'altezza delle immagini all'interno del blocco "link solo immagini" è stata aumentata e non ha più un limite massimo. Ora tutte le card avranno la stessa altezza.
49
+ - Sistemati i formati "A pieno schermo" e "Allineamento al centro" del blocco Video, l'immagine in anteprima dava problemi nella visualizzazione di video di Youtube.
50
+
44
51
  ## Versione 11.30.1 (14/04/2025)
45
52
 
46
53
  ### Fix
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "design-comuni-plone-theme",
3
3
  "description": "Volto Theme for Italia design guidelines",
4
4
  "license": "GPL-v3",
5
- "version": "11.30.1",
5
+ "version": "11.30.2",
6
6
  "main": "src/index.js",
7
7
  "repository": {
8
8
  "type": "git",
@@ -156,7 +156,7 @@
156
156
  "volto-gdpr-privacy": "2.2.12",
157
157
  "volto-google-analytics": "2.0.0",
158
158
  "volto-multilingual-widget": "3.2.1",
159
- "volto-querywidget-with-browser": "0.4.2",
159
+ "volto-querywidget-with-browser": "0.4.4",
160
160
  "volto-rss-block": "3.0.0",
161
161
  "volto-secondarymenu": "4.1.1",
162
162
  "volto-site-settings": "0.4.4",
package/publiccode.yml CHANGED
@@ -227,9 +227,9 @@ maintenance:
227
227
  name: io-Comune - Il sito AgID per Comuni ed Enti Pubblici
228
228
  platforms:
229
229
  - web
230
- releaseDate: '2025-04-14'
230
+ releaseDate: '2025-05-07'
231
231
  softwareType: standalone/web
232
- softwareVersion: 11.30.1
232
+ softwareVersion: 11.30.2
233
233
  url: 'https://github.com/italia/design-comuni-plone-theme'
234
234
  usedBy:
235
235
  - ASP Comuni Modenesi Area Nord
@@ -9,7 +9,7 @@
9
9
  position: relative;
10
10
  display: flex;
11
11
  overflow: hidden;
12
- height: 100px;
12
+ height: 100%;
13
13
  align-items: center;
14
14
  justify-content: center;
15
15
  border: 8px solid $white;
@@ -1,46 +1,74 @@
1
1
  .block.video {
2
- .ui.embed {
3
- position: relative;
2
+ .video-inner {
3
+ > div {
4
+ position: relative;
5
+ overflow: hidden;
6
+ max-width: 100%;
7
+ height: 0;
8
+ padding-bottom: 56.25%;
9
+
10
+ .icon-play {
11
+ position: absolute;
12
+ z-index: 2;
13
+ top: 50%;
14
+ left: 50%;
15
+ width: 4rem;
16
+ height: 2.6rem;
17
+ border-radius: 15px;
18
+ background-color: rgba(0, 0, 0, 0.7);
19
+ color: $white;
20
+ cursor: pointer;
21
+ line-height: 2.6rem;
22
+ text-align: center;
23
+ transform: translateX(-50%) translateY(-50%);
24
+ }
25
+ }
26
+
27
+ .ui.embed.active {
28
+ .icon-play,
29
+ img.placeholder {
30
+ display: none;
31
+ }
32
+ }
4
33
 
5
34
  img.placeholder {
6
35
  position: absolute;
7
36
  top: 50%;
8
37
  left: 0;
9
38
  width: 100%;
39
+ min-width: 100%;
40
+ height: unset;
41
+ min-height: 100%;
42
+ object-fit: cover;
10
43
  transform: translateY(-50%);
11
44
  }
45
+ }
12
46
 
13
- .icon-play {
14
- position: absolute;
15
- z-index: 2;
16
- top: 50%;
17
- left: 50%;
18
- width: 4rem;
19
- height: 2.6rem;
20
- border-radius: 15px;
21
- background-color: rgba(0, 0, 0, 0.7);
22
- color: $white;
23
- cursor: pointer;
24
- line-height: 2.6rem;
25
- text-align: center;
26
- transform: translateX(-50%) translateY(-50%);
47
+ .ui.embed img.placeholder {
48
+ cursor: pointer;
49
+ }
27
50
 
28
- svg {
29
- width: 1.2rem;
30
- height: 1.2rem;
31
- }
51
+ &.full {
52
+ .video-inner.full-width > div {
53
+ height: 100%;
54
+ padding-bottom: 0;
55
+ }
56
+ }
32
57
 
33
- &:hover,
34
- &:active,
35
- &:focus {
36
- background-color: $primary;
37
- color: $primary-text;
58
+ @media (max-width: #{map-get($grid-breakpoints, md)}) {
59
+ &.align.right,
60
+ &.align.left {
61
+ .video-inner {
62
+ width: 100%;
63
+ margin-right: 0 !important;
64
+ margin-left: 0 !important;
65
+ float: unset;
38
66
  }
39
- }
40
67
 
41
- &.active {
42
- .icon-play {
43
- display: none;
68
+ img {
69
+ margin-right: 0 !important;
70
+ margin-left: 0 !important;
71
+ float: unset;
44
72
  }
45
73
  }
46
74
  }