design-comuni-plone-theme 11.26.3 → 11.26.5
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/.github/workflows/main.yml +1 -1
- package/.github/workflows/prs.yml +1 -1
- package/.github/workflows/release.yml +1 -1
- package/.yarn/cache/{volto-venue-npm-4.1.0-481d5ba425-64ca36bc93.zip → volto-venue-npm-4.1.1-d5be247928-f796d519ad.zip} +0 -0
- package/.yarn/install-state.gz +0 -0
- package/CHANGELOG.md +41 -0
- package/Makefile +1 -1
- package/RELEASE.md +22 -0
- package/locales/de/LC_MESSAGES/volto.po +38 -7
- package/locales/en/LC_MESSAGES/volto.po +39 -8
- package/locales/es/LC_MESSAGES/volto.po +38 -7
- package/locales/fr/LC_MESSAGES/volto.po +38 -7
- package/locales/it/LC_MESSAGES/volto.po +39 -8
- package/locales/volto.pot +39 -8
- package/package.json +3 -3
- package/publiccode.yml +2 -2
- package/src/components/ImageWithErrors/ImageWithErrors.jsx +0 -1
- package/src/components/ItaliaTheme/Blocks/Listing/AttachmentCardTemplate.jsx +13 -10
- package/src/components/ItaliaTheme/Blocks/Listing/CardWithImage/CardWithImageDefault.jsx +7 -7
- package/src/components/ItaliaTheme/Blocks/Listing/Commons/ListingImage.jsx +35 -13
- package/src/components/ItaliaTheme/Blocks/Listing/CompleteBlockLinksTemplate.jsx +16 -10
- package/src/components/ItaliaTheme/Blocks/Listing/ContentInEvidenceTemplate.jsx +12 -9
- package/src/components/ItaliaTheme/Blocks/Listing/GridGalleryTemplate.jsx +7 -7
- package/src/components/ItaliaTheme/Blocks/Listing/InEvidenceTemplate.jsx +9 -8
- package/src/components/ItaliaTheme/Blocks/Listing/PhotogalleryTemplate.jsx +7 -6
- package/src/components/ItaliaTheme/Blocks/Listing/SliderTemplate.jsx +9 -6
- package/src/components/ItaliaTheme/Blocks/Listing/SmallBlockLinksTemplate.jsx +19 -23
- package/src/components/ItaliaTheme/Cards/CardPersona.jsx +5 -8
- package/src/components/ItaliaTheme/View/Commons/GenericCard.jsx +14 -13
- package/src/components/ItaliaTheme/View/Commons/LocationItem.jsx +15 -9
- package/src/components/ItaliaTheme/View/Commons/OfficeCard.jsx +7 -3
- package/src/components/ItaliaTheme/View/Commons/Sponsors.jsx +14 -10
- package/src/components/ItaliaTheme/View/Commons/VenuesSmall.jsx +13 -6
- package/src/components/ItaliaTheme/View/EventoView/EventoContatti.jsx +8 -7
- package/src/components/ItaliaTheme/View/EventoView/EventoContattiOrganizzatoreEsterno.jsx +1 -12
- package/src/components/ItaliaTheme/View/EventoView/EventoContattiOrganizzatoreInterno.jsx +1 -12
- package/src/components/ItaliaTheme/View/EventoView/EventoOrganizzatoDa.jsx +38 -0
- package/src/components/ItaliaTheme/View/EventoView/EventoPatrocinatoDa.jsx +38 -0
- package/src/components/ItaliaTheme/View/EventoView/EventoUlterioriInformazioni.jsx +0 -18
- package/src/components/ItaliaTheme/View/NewsItemView/NewsItemText.jsx +1 -0
- package/src/components/SelectInput/SelectInput.jsx +9 -4
- package/src/config/Blocks/ListingOptions/attachmentCardTemplate.js +1 -1
- package/src/customizations/volto/components/manage/UniversalLink/UniversalLink.jsx +15 -11
- package/src/customizations/volto/components/theme/View/ListingView.jsx +3 -3
- package/src/helpers/images.js +25 -1
- package/src/helpers/index.js +4 -1
- package/src/overrideTranslations.jsx +25 -0
- package/src/theme/ItaliaTheme/Blocks/_cardWithImage.scss +4 -0
- package/src/theme/ItaliaTheme/Blocks/_gridBlock.scss +9 -0
- package/src/theme/ItaliaTheme/Components/_cardLocationItem.scss +12 -0
- package/src/theme/ItaliaTheme/Components/_cardPersona.scss +19 -1
- package/src/theme/ItaliaTheme/Widgets/_blocksWidget.scss +36 -0
- package/src/theme/_cms-ui.scss +21 -0
- package/src/theme/bootstrap-override/_bootstrap-italia-site.scss +1 -0
- package/src/theme/bootstrap-override/bootstrap-italia/_avatar.scss +28 -0
|
@@ -3,3 +3,15 @@
|
|
|
3
3
|
flex: 0 0 100%;
|
|
4
4
|
}
|
|
5
5
|
}
|
|
6
|
+
|
|
7
|
+
.card-wrapper.card-teaser-wrapper .card-teaser.location-item .pin-icon {
|
|
8
|
+
margin-left: -0.5rem;
|
|
9
|
+
margin-right: 0.25rem;
|
|
10
|
+
margin-bottom: 0.5rem;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
// Full width for last odd card in locations
|
|
14
|
+
.card-wrapper.card-teaser-wrapper
|
|
15
|
+
.card-teaser.location-item:nth-child(odd):last-child {
|
|
16
|
+
flex: 0 0 100%;
|
|
17
|
+
}
|
|
@@ -11,6 +11,10 @@
|
|
|
11
11
|
// nel momento in cui riusciremo a togliere il padding 0 important
|
|
12
12
|
// dalla classe .card-big-io-comune .card-body globalmente
|
|
13
13
|
padding: 24px !important;
|
|
14
|
+
|
|
15
|
+
.card-text {
|
|
16
|
+
color: $gray-secondary;
|
|
17
|
+
}
|
|
14
18
|
}
|
|
15
19
|
|
|
16
20
|
.card-image {
|
|
@@ -28,6 +32,15 @@
|
|
|
28
32
|
.card-title {
|
|
29
33
|
font-size: $card-big-head-size;
|
|
30
34
|
line-height: $card-big-head-l-h;
|
|
35
|
+
|
|
36
|
+
a {
|
|
37
|
+
font-weight: 700;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
span.text {
|
|
42
|
+
font-weight: 600;
|
|
43
|
+
letter-spacing: 1px;
|
|
31
44
|
}
|
|
32
45
|
|
|
33
46
|
&.listing-item {
|
|
@@ -47,10 +60,15 @@
|
|
|
47
60
|
|
|
48
61
|
h3.card-title {
|
|
49
62
|
a {
|
|
50
|
-
font-size: 1.
|
|
63
|
+
font-size: 1.777rem;
|
|
51
64
|
line-height: 1.5rem;
|
|
52
65
|
}
|
|
53
66
|
}
|
|
67
|
+
|
|
68
|
+
.card-text {
|
|
69
|
+
font-family: 'Lora' !important;
|
|
70
|
+
color: $card-p-color;
|
|
71
|
+
}
|
|
54
72
|
}
|
|
55
73
|
}
|
|
56
74
|
}
|
|
@@ -14,3 +14,39 @@
|
|
|
14
14
|
font-family: $font-family-sans-serif;
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
|
+
|
|
18
|
+
// <h> styles for text editor content in CTs
|
|
19
|
+
|
|
20
|
+
#main-content-section.it-page-sections-container .richtext-blocks {
|
|
21
|
+
h2 {
|
|
22
|
+
font-size: 1.555rem;
|
|
23
|
+
line-height: 1.428;
|
|
24
|
+
font-weight: 600;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
h3 {
|
|
28
|
+
font-size: 1.35rem;
|
|
29
|
+
line-height: 1.25;
|
|
30
|
+
font-weight: 600;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
h4 {
|
|
34
|
+
font-size: 1.35rem;
|
|
35
|
+
line-height: 1.25;
|
|
36
|
+
font-weight: 600;
|
|
37
|
+
color: $gray-600;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
h5 {
|
|
41
|
+
font-size: 1.35rem;
|
|
42
|
+
line-height: 1.25;
|
|
43
|
+
font-weight: 600;
|
|
44
|
+
color: $gray-500;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
h6 {
|
|
48
|
+
font-size: 1.2rem;
|
|
49
|
+
line-height: 1.15;
|
|
50
|
+
font-weight: 400;
|
|
51
|
+
}
|
|
52
|
+
}
|
package/src/theme/_cms-ui.scss
CHANGED
|
@@ -298,6 +298,27 @@ body.cms-ui {
|
|
|
298
298
|
}
|
|
299
299
|
}
|
|
300
300
|
|
|
301
|
+
//cookie banner icons
|
|
302
|
+
// replaced icon code with left and right as they actually render correctly
|
|
303
|
+
// and rotated the icon
|
|
304
|
+
&.section-gdpr-cookie-settings {
|
|
305
|
+
.cookies-widget .move-buttons {
|
|
306
|
+
i.icon.arrow.up {
|
|
307
|
+
transform: rotate(90deg);
|
|
308
|
+
&::before {
|
|
309
|
+
content: '\e911';
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
i.icon.arrow.down {
|
|
314
|
+
transform: rotate(90deg);
|
|
315
|
+
&::before {
|
|
316
|
+
content: '\e905';
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
|
|
301
322
|
.sidebar-container .object-listing,
|
|
302
323
|
.icon-align-name {
|
|
303
324
|
svg.icon {
|
|
@@ -140,6 +140,7 @@
|
|
|
140
140
|
@import 'bootstrap-italia/src/scss/custom/dialog';
|
|
141
141
|
@import 'bootstrap-italia/src/scss/custom/notifications';
|
|
142
142
|
@import 'bootstrap-italia/src/scss/custom/avatar';
|
|
143
|
+
@import './bootstrap-italia/avatar';
|
|
143
144
|
@import 'bootstrap-italia/src/scss/custom/thumbnav';
|
|
144
145
|
@import 'bootstrap-italia/src/scss/custom/steppers';
|
|
145
146
|
@import './bootstrap-italia/steppers';
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
// @import 'bootstrap-italia/src/scss/variables';
|
|
2
|
+
@use 'sass:math';
|
|
3
|
+
// $avatar-base-size: 8px;
|
|
4
|
+
|
|
5
|
+
.avatar {
|
|
6
|
+
&.size-lg {
|
|
7
|
+
// Dal figma, sti tondi sono 64x64
|
|
8
|
+
width: $avatar-base-size * 8;
|
|
9
|
+
height: $avatar-base-size * 8;
|
|
10
|
+
p {
|
|
11
|
+
font-size: 24px;
|
|
12
|
+
}
|
|
13
|
+
.icon {
|
|
14
|
+
height: 28px;
|
|
15
|
+
width: 28px;
|
|
16
|
+
}
|
|
17
|
+
.avatar-presence,
|
|
18
|
+
.avatar-status {
|
|
19
|
+
right: 2px;
|
|
20
|
+
width: 14px;
|
|
21
|
+
height: 14px;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.avatar-status {
|
|
25
|
+
top: math.div($avatar-base-size, 28);
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|