design-comuni-plone-theme 11.31.0 → 11.31.1

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,24 @@
1
1
 
2
2
 
3
+ ## [11.31.1](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v11.31.0...v11.31.1) (2025-07-14)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * adjusted link and blockquote colors inside the table block ([#964](https://github.com/RedTurtle/design-comuni-plone-theme/issues/964)) ([e7cde95](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e7cde95a7d724b4d6429509d8bb9682bc4f83369))
9
+ * style for fieldlabel removed and moved inside the addon ([#963](https://github.com/RedTurtle/design-comuni-plone-theme/issues/963)) ([75ad91c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/75ad91ca7ff22763d0ad574a290de7d93c7ff337))
10
+ * table toolbar + th text transform ([#965](https://github.com/RedTurtle/design-comuni-plone-theme/issues/965)) ([8f4d6d9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8f4d6d96ed2c915a6ccc170d462aeeae82dee548))
11
+
12
+
13
+ ### Maintenance
14
+
15
+ * **deps:** bump tar-fs from 2.1.1 to 2.1.3 ([#954](https://github.com/RedTurtle/design-comuni-plone-theme/issues/954)) ([31fc9ed](https://github.com/RedTurtle/design-comuni-plone-theme/commit/31fc9ed1aaa924ea2e4069b190416fa330fb4440))
16
+
17
+
18
+ ### Documentation
19
+
20
+ * updated publiccode and release log ([b172e7b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b172e7bca35d2cca9c3a9f3baca5e0cd932496dc))
21
+
3
22
  ## [11.31.0](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v11.30.4...v11.31.0) (2025-06-17)
4
23
 
5
24
 
package/RELEASE.md CHANGED
@@ -41,6 +41,12 @@
41
41
  - ...
42
42
  -->
43
43
 
44
+ ## Versione 11.31.1 (14/07/2025)
45
+
46
+ ### Fix
47
+
48
+ - La toolbar della tabella è stata riposizionata per non ostacolare la compilazione dei dati, e l'intestazione non forza le lettere maiuscole in modalità di Modifica.
49
+
44
50
  ## Versione 11.31.0 (17/06/2025)
45
51
 
46
52
  ### Migliorie
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.31.0",
5
+ "version": "11.31.1",
6
6
  "main": "src/index.js",
7
7
  "repository": {
8
8
  "type": "git",
@@ -151,7 +151,7 @@
151
151
  "volto-data-grid-widget": "2.3.1",
152
152
  "volto-dropdownmenu": "4.1.3",
153
153
  "volto-editablefooter": "5.1.7",
154
- "volto-feedback": "0.6.1",
154
+ "volto-feedback": "0.7.1",
155
155
  "volto-form-block": "3.12.0",
156
156
  "volto-gdpr-privacy": "2.2.12",
157
157
  "volto-google-analytics": "2.0.0",
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-06-17'
230
+ releaseDate: '2025-07-14'
231
231
  softwareType: standalone/web
232
- softwareVersion: 11.31.0
232
+ softwareVersion: 11.31.1
233
233
  url: 'https://github.com/italia/design-comuni-plone-theme'
234
234
  usedBy:
235
235
  - ASP Comuni Modenesi Area Nord
@@ -117,17 +117,6 @@
117
117
  font-size: 1.125rem;
118
118
  font-weight: 600;
119
119
  line-height: 2;
120
-
121
- > div {
122
- margin-left: 0.5rem;
123
- font-size: 0.875rem;
124
- font-weight: 600;
125
- line-height: 1.5;
126
- }
127
-
128
- h6 {
129
- margin-bottom: 0;
130
- }
131
120
  }
132
121
 
133
122
  .comments-step {
@@ -49,6 +49,26 @@
49
49
 
50
50
  &.inverted {
51
51
  @extend .table-dark;
52
+ a {
53
+ color: color-contrast($primary);
54
+ &:hover {
55
+ text-decoration: none;
56
+ }
57
+ }
58
+ .blockquote,
59
+ .blockquote-card {
60
+ border-color: color-contrast($primary) !important;
61
+ }
62
+ .blockquote-card {
63
+ box-shadow: 0 2px 4px rgba(255, 255, 255, 0.2);
64
+ &.dark {
65
+ background-color: color-contrast($primary);
66
+ color: $text-color;
67
+ a {
68
+ color: $link-color;
69
+ }
70
+ }
71
+ }
52
72
  }
53
73
 
54
74
  &:not(.inverted) {
@@ -63,4 +83,12 @@
63
83
  margin: 0;
64
84
  }
65
85
  }
86
+
87
+ .toolbar {
88
+ top: -3.34rem;
89
+ }
90
+ }
91
+
92
+ .cms-ui .ui.table th {
93
+ text-transform: none;
66
94
  }