design-comuni-plone-theme 11.12.8 → 11.12.9
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.
package/.yarn/install-state.gz
CHANGED
|
Binary file
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [11.12.9](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v11.12.8...v11.12.9) (2024-06-06)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* login and password reset page font ([666baf7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/666baf7281f9fac6e8e7beec9f2442deb85ea166))
|
|
9
|
+
* view link in attachment card template ([#690](https://github.com/RedTurtle/design-comuni-plone-theme/issues/690)) ([8e03a21](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8e03a21990cc2a8006ccd78b836fefdb80a69ede))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Documentation
|
|
13
|
+
|
|
14
|
+
* updated publiccode and release log ([17bcbc7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/17bcbc7f8106eef52d3d398fcec4b5f48b4501bb))
|
|
15
|
+
|
|
3
16
|
## [11.12.8](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v11.12.7...v11.12.8) (2024-06-04)
|
|
4
17
|
|
|
5
18
|
|
package/RELEASE.md
CHANGED
package/package.json
CHANGED
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: '2024-06-
|
|
230
|
+
releaseDate: '2024-06-06'
|
|
231
231
|
softwareType: standalone/web
|
|
232
|
-
softwareVersion: 11.12.
|
|
232
|
+
softwareVersion: 11.12.9
|
|
233
233
|
url: 'https://github.com/italia/design-comuni-plone-theme'
|
|
234
234
|
usedBy:
|
|
235
235
|
- ASP Comuni Modenesi Area Nord
|
|
@@ -51,16 +51,17 @@ const AttachmentCardTemplate = ({
|
|
|
51
51
|
<div className="card-wrapper card-teaser-wrapper card-teaser-wrapper-equal card-teaser-block-3 mb-3">
|
|
52
52
|
{items.map((item, index) => {
|
|
53
53
|
let itemUrl = { ...item };
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
}
|
|
54
|
+
//la parte qui sotto commentata non serve perchè gestisce gia tutto UniversalLink e in view si vedrebbe /@@download/file duplicato nell url
|
|
55
|
+
// if (item['@type'] === 'File') {
|
|
56
|
+
// itemUrl = {
|
|
57
|
+
// ...item,
|
|
58
|
+
// file: item,
|
|
59
|
+
// '@id':
|
|
60
|
+
// show_pdf_preview && item?.mime_type === 'application/pdf'
|
|
61
|
+
// ? item?.['@id'] + '/@@display-file/file'
|
|
62
|
+
// : item?.['@id'] + '/@@download/file',
|
|
63
|
+
// };
|
|
64
|
+
// }
|
|
64
65
|
|
|
65
66
|
return (
|
|
66
67
|
<Card
|
package/src/theme/_cms-ui.scss
CHANGED
|
@@ -646,6 +646,12 @@ body.cms-ui {
|
|
|
646
646
|
}
|
|
647
647
|
|
|
648
648
|
#page-login {
|
|
649
|
+
.ui.text.container,
|
|
650
|
+
.ui.form input[type='text'],
|
|
651
|
+
.ui.form input[type='password'] {
|
|
652
|
+
font-family: $font-family-sans-serif;
|
|
653
|
+
}
|
|
654
|
+
|
|
649
655
|
.help {
|
|
650
656
|
a {
|
|
651
657
|
color: $link-color;
|
|
@@ -703,6 +709,14 @@ body.cms-ui {
|
|
|
703
709
|
}
|
|
704
710
|
}
|
|
705
711
|
|
|
712
|
+
#page-password-reset {
|
|
713
|
+
&,
|
|
714
|
+
h1,
|
|
715
|
+
.ui.message .header {
|
|
716
|
+
font-family: $font-family-sans-serif;
|
|
717
|
+
}
|
|
718
|
+
}
|
|
719
|
+
|
|
706
720
|
.objectbrowser-field {
|
|
707
721
|
.selected-values {
|
|
708
722
|
.ui.label {
|