Skip to content

Commit 2ba9b42

Browse files
committed
Merge branch 'main' into 66553-filewidget-dropzone-a11y
2 parents c3db3da + 05f63c6 commit 2ba9b42

File tree

6 files changed

+51
-10
lines changed

6 files changed

+51
-10
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## [12.10.0](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v12.9.0...v12.10.0) (2026-01-27)
4+
5+
6+
### Features
7+
8+
* **a11y:** added class visually-hidden ([#1065](https://github.com/RedTurtle/design-comuni-plone-theme/issues/1065)) ([dcadda2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/dcadda2088ca643a80d8f247b17c4603d545e4a2))
9+
* enabled slate editor heading button ([#1064](https://github.com/RedTurtle/design-comuni-plone-theme/issues/1064)) ([a1a0a4a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a1a0a4a04245f8e5a7687d2674e35c8f062817b1))
10+
11+
12+
### Bug Fixes
13+
14+
* **a11y:** lack of contrast on the toolbar buttons ([#1061](https://github.com/RedTurtle/design-comuni-plone-theme/issues/1061)) ([70bc9e7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/70bc9e7d2c6647aa52dc76f8d6f73dbba1c15adf))
15+
16+
17+
### Documentation
18+
19+
* updated publiccode and release log ([98f50aa](https://github.com/RedTurtle/design-comuni-plone-theme/commit/98f50aa9ab016c5753de5b503c5c9b824e50be11))
20+
321
## [12.9.0](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v12.8.0...v12.9.0) (2026-01-08)
422

523

RELEASE.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,15 @@
4141
- ...
4242
-->
4343

44-
## Versione X.X.X (dd/mm/yyyy)
45-
46-
### Migliorie
47-
48-
- ...
44+
## Versione 12.10.0 (27/01/2026)
4945

5046
### Novità
5147

52-
- Ora è possibile aggiungere titoli in qualsiasi sezione delleditor di testo
48+
- Ora è possibile aggiungere titoli in qualsiasi sezione dell'editor di testo.
5349

5450
### Fix
5551

56-
- ...
52+
- I pulsanti sulla barra degli strumenti ora rispettano il contrasto minimo previsto per i colori.
5753

5854
## Versione 12.9.0 (08/01/2026)
5955

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "design-comuni-plone-theme",
33
"description": "Volto Theme for Italia design guidelines",
44
"license": "GPL-v3",
5-
"version": "12.9.0",
5+
"version": "12.10.0",
66
"main": "src/index.js",
77
"repository": {
88
"type": "git",

publiccode.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,9 +227,9 @@ maintenance:
227227
name: io-Comune - Il sito AgID per Comuni ed Enti Pubblici
228228
platforms:
229229
- web
230-
releaseDate: '2026-01-08'
230+
releaseDate: '2026-01-27'
231231
softwareType: standalone/web
232-
softwareVersion: 12.9.0
232+
softwareVersion: 12.10.0
233233
url: 'https://github.com/italia/design-comuni-plone-theme'
234234
usedBy:
235235
- ASP Comuni Modenesi Area Nord

src/theme/ItaliaTheme/_main.scss

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -419,3 +419,19 @@ svg.external-link {
419419
flex: unset;
420420
}
421421
}
422+
423+
//BACKPORT of https://github.com/plone/volto/pull/7552
424+
// start
425+
.visually-hidden {
426+
position: absolute;
427+
overflow: hidden;
428+
width: 1px;
429+
height: 1px;
430+
padding: 0;
431+
border: 0;
432+
margin: -1px;
433+
clip: rect(1px, 1px, 1px, 1px); /* IE-style CSS for compatibility */
434+
white-space: nowrap;
435+
word-wrap: normal;
436+
}
437+
// end

src/theme/extras/_toolbar.scss

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,15 @@
55
max-width: 220px;
66
margin: 0 auto;
77
}
8+
9+
//BACKPORT of https://github.com/plone/volto/pull/7771
10+
//start
11+
.toolbar {
12+
.toolbar-body {
13+
.button > .icon:not(.button) {
14+
opacity: 1;
15+
}
16+
}
17+
}
18+
//end
819
}

0 commit comments

Comments
 (0)