design-comuni-plone-theme 11.9.0 → 11.10.0
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/performance.yml +47 -0
- package/.yarn/cache/minipass-npm-5.0.0-c64fb63c92-425dab2887.zip +0 -0
- package/.yarn/cache/tar-npm-6.2.1-237800bb20-f1322768c9.zip +0 -0
- package/.yarn/cache/{volto-gdpr-privacy-npm-2.1.1-414b7e6a62-2246b94027.zip → volto-gdpr-privacy-npm-2.2.0-6be0f74d53-8a93254251.zip} +0 -0
- package/.yarn/cache/volto-slimheader-npm-0.1.1-6c4a32fae4-94bafa197c.zip +0 -0
- package/.yarn/install-state.gz +0 -0
- package/CHANGELOG.md +60 -0
- package/RELEASE.md +33 -0
- package/locales/de/LC_MESSAGES/volto.po +61 -36
- package/locales/en/LC_MESSAGES/volto.po +63 -38
- package/locales/es/LC_MESSAGES/volto.po +61 -36
- package/locales/fr/LC_MESSAGES/volto.po +62 -37
- package/locales/it/LC_MESSAGES/volto.po +61 -36
- package/locales/volto.pot +62 -37
- package/package.json +5 -3
- package/publiccode.yml +2 -2
- package/src/components/ItaliaTheme/AppExtras/TrackFocus.jsx +47 -0
- package/src/components/ItaliaTheme/Blocks/Accordion/View.jsx +1 -1
- package/src/components/ItaliaTheme/Blocks/ArgumentsInEvidence/BodyWrapper.jsx +8 -3
- package/src/components/ItaliaTheme/Blocks/ArgumentsInEvidence/BottomBody.jsx +25 -16
- package/src/components/ItaliaTheme/Blocks/ArgumentsInEvidence/Edit.jsx +10 -2
- package/src/components/ItaliaTheme/Blocks/ArgumentsInEvidence/Sidebar.jsx +39 -3
- package/src/components/ItaliaTheme/Blocks/ArgumentsInEvidence/View.jsx +31 -16
- package/src/components/ItaliaTheme/Blocks/Calendar/Body.jsx +23 -59
- package/src/components/ItaliaTheme/Blocks/Common/SearchFilters/SelectFilter.jsx +9 -1
- package/src/components/ItaliaTheme/Blocks/EventSearch/DefaultFilters.js +5 -0
- package/src/components/ItaliaTheme/Blocks/IconBlocks/Block/ViewBlock.jsx +17 -0
- package/src/components/ItaliaTheme/Blocks/Listing/CardWithImage/CardWithImageDefault.jsx +182 -0
- package/src/components/ItaliaTheme/Blocks/Listing/CardWithImageTemplate.jsx +7 -173
- package/src/components/ItaliaTheme/Blocks/Listing/Commons/utils.js +0 -70
- package/src/components/ItaliaTheme/Blocks/Listing/PhotogalleryTemplate.jsx +24 -36
- package/src/components/ItaliaTheme/Blocks/Listing/SimpleCard/Card/SimpleCardDefault.jsx +177 -0
- package/src/components/ItaliaTheme/Blocks/Listing/SimpleCard/SimpleCardTemplateDefault.jsx +8 -170
- package/src/components/ItaliaTheme/Blocks/Listing/Slider/SlideItemDefault.jsx +65 -0
- package/src/components/ItaliaTheme/Blocks/Listing/SliderTemplate.jsx +62 -212
- package/src/components/ItaliaTheme/Blocks/VideoGallery/Body.jsx +10 -48
- package/src/components/ItaliaTheme/Blocks/VideoGallery/Edit.jsx +3 -2
- package/src/components/ItaliaTheme/Blocks/VideoGallery/View.jsx +3 -2
- package/src/components/ItaliaTheme/Footer/FooterNavigation.jsx +6 -0
- package/src/components/ItaliaTheme/Header/HeaderSlim/TertiaryMenu.jsx +34 -5
- package/src/components/ItaliaTheme/Icons/FontAwesomeIcon.jsx +2 -0
- package/src/components/ItaliaTheme/MegaMenu/MegaMenu.jsx +8 -2
- package/src/components/ItaliaTheme/MenuSecondary/MenuSecondary.jsx +3 -0
- package/src/components/ItaliaTheme/Slider/ButtonPlayPause.jsx +48 -0
- package/src/components/ItaliaTheme/Slider/CarouselWrapper.jsx +23 -0
- package/src/components/ItaliaTheme/Slider/NextArrow.jsx +31 -0
- package/src/components/ItaliaTheme/Slider/PrevArrow.jsx +33 -0
- package/src/components/ItaliaTheme/Slider/SingleSlideWrapper.jsx +39 -0
- package/src/components/ItaliaTheme/Slider/slider.js +203 -0
- package/src/components/ItaliaTheme/View/Commons/ContactLink.jsx +3 -2
- package/src/components/ItaliaTheme/View/Commons/Dates.jsx +12 -4
- package/src/components/ItaliaTheme/View/Commons/Gallery.jsx +13 -9
- package/src/components/ItaliaTheme/View/Commons/Metadata.jsx +1 -1
- package/src/components/ItaliaTheme/View/Commons/RenderBlocks.jsx +20 -7
- package/src/components/ItaliaTheme/View/DocumentoView/DocumentoDescrizione.jsx +15 -7
- package/src/components/ItaliaTheme/View/EventoView/EventoContattiOrganizzatoreEsterno.jsx +12 -1
- package/src/components/ItaliaTheme/View/EventoView/EventoLuoghi.jsx +7 -7
- package/src/components/ItaliaTheme/View/UOView/UOServices.jsx +1 -1
- package/src/components/ItaliaTheme/View/__tests__/ServizioMetadati.test.jsx +1 -1
- package/src/components/ItaliaTheme/index.js +7 -2
- package/src/config/Blocks/ListingOptions/cardWithImageTemplate.js +18 -2
- package/src/config/Blocks/ListingOptions/simpleCardTemplate.js +34 -17
- package/src/config/Blocks/ListingOptions/sliderTemplate.js +68 -11
- package/src/config/Blocks/listingVariations.js +8 -0
- package/src/config/italiaConfig.js +13 -2
- package/src/customizations/volto/components/manage/Blocks/Listing/ListingBody.jsx +5 -0
- package/src/customizations/volto/components/manage/Blocks/Search/components/SelectFacetFilterListEntry.jsx +43 -36
- package/src/customizations/volto/components/manage/UniversalLink/UniversalLink.jsx +8 -3
- package/src/customizations/volto/components/manage/Widgets/FileWidget.jsx +2 -2
- package/src/customizations/volto/components/theme/Navigation/Navigation.jsx +5 -1
- package/src/customizations/volto/components/theme/Sitemap/Sitemap.jsx +126 -0
- package/src/helpers/config.js +1 -1
- package/src/theme/ItaliaTheme/Blocks/_argumentsInEvidence.scss +4 -4
- package/src/theme/ItaliaTheme/Blocks/{_cardWithImageAndInEvidence.scss → _cardWithImage.scss} +63 -38
- package/src/theme/ItaliaTheme/Blocks/_iconBlocks.scss +7 -6
- package/src/theme/ItaliaTheme/Blocks/_inEvidenceTemplate.scss +123 -0
- package/src/theme/ItaliaTheme/Blocks/_simpleCardTemplate.scss +65 -67
- package/src/theme/ItaliaTheme/Blocks/_sliderTemplate.scss +81 -0
- package/src/theme/ItaliaTheme/Blocks/common/_searchBlockFilters.scss +16 -0
- package/src/theme/ItaliaTheme/Components/_cardPersona.scss +1 -1
- package/src/theme/ItaliaTheme/Components/_mobileMenu.scss +1 -1
- package/src/theme/ItaliaTheme/Components/_navigation.scss +15 -0
- package/src/theme/ItaliaTheme/Components/_tertiaryMenu.scss +6 -0
- package/src/theme/ItaliaTheme/Print/_all_pages.scss +33 -0
- package/src/theme/ItaliaTheme/Print/_page.scss +21 -0
- package/src/theme/ItaliaTheme/Print/_uo.scss +7 -2
- package/src/theme/ItaliaTheme/Views/_common.scss +4 -0
- package/src/theme/bootstrap-override/bootstrap-italia/_chips.scss +16 -1
- package/src/theme/bootstrap-override/bootstrap-italia/_footer.scss +2 -0
- package/src/theme/site.scss +4 -2
- package/.yarn/cache/nanoid-npm-3.3.4-3d250377d6-2fddd6dee9.zip +0 -0
- package/.yarn/cache/postcss-npm-8.4.16-7367383579-10eee25efd.zip +0 -0
- package/.yarn/cache/tar-npm-6.1.11-e6ac3cba9c-a04c07bb9e.zip +0 -0
- package/src/components/ItaliaTheme/Blocks/Listing/Commons/NextArrow.jsx +0 -10
- package/src/components/ItaliaTheme/Blocks/Listing/Commons/PrevArrow.jsx +0 -10
- package/src/theme/ItaliaTheme/Blocks/_inevidencetemplate.scss +0 -34
package/src/theme/ItaliaTheme/Blocks/{_cardWithImageAndInEvidence.scss → _cardWithImage.scss}
RENAMED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
.block.listing .card-with-image-template
|
|
2
|
-
.block.listing .in-evidence {
|
|
1
|
+
.block.listing .card-with-image-template {
|
|
3
2
|
.col-item {
|
|
4
3
|
margin-bottom: 22px;
|
|
5
4
|
}
|
|
@@ -90,54 +89,80 @@
|
|
|
90
89
|
}
|
|
91
90
|
}
|
|
92
91
|
|
|
93
|
-
.card-with-image-
|
|
94
|
-
.
|
|
95
|
-
.
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
line-height: 1.313rem;
|
|
100
|
-
|
|
101
|
-
.text {
|
|
102
|
-
font-weight: 600;
|
|
103
|
-
letter-spacing: 1px;
|
|
104
|
-
}
|
|
92
|
+
.card-with-image-default-item.listing-item.card {
|
|
93
|
+
.card-body {
|
|
94
|
+
.category-top {
|
|
95
|
+
color: $caption-text;
|
|
96
|
+
font-size: 0.875rem;
|
|
97
|
+
line-height: 1.313rem;
|
|
105
98
|
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
99
|
+
.text {
|
|
100
|
+
font-weight: 600;
|
|
101
|
+
letter-spacing: 1px;
|
|
102
|
+
}
|
|
110
103
|
|
|
111
|
-
|
|
112
|
-
|
|
104
|
+
.data {
|
|
105
|
+
font-weight: 400;
|
|
106
|
+
letter-spacing: 1.1px;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
113
109
|
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
110
|
+
.card-title {
|
|
111
|
+
a {
|
|
112
|
+
color: $link-color;
|
|
113
|
+
font-size: 1.3rem;
|
|
114
|
+
font-weight: 700;
|
|
115
|
+
line-height: 1.75rem;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
117
118
|
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
119
|
+
.card-text {
|
|
120
|
+
color: $gray-secondary;
|
|
121
|
+
font-family: $font-family-sans-serif;
|
|
122
|
+
font-size: 1rem;
|
|
123
|
+
line-height: 1.5rem;
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.icon {
|
|
128
|
+
width: 32px;
|
|
129
|
+
height: 32px;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.img-responsive-wrapper {
|
|
133
|
+
width: inherit;
|
|
134
|
+
|
|
135
|
+
.img-responsive {
|
|
136
|
+
.img-wrapper {
|
|
137
|
+
display: flex;
|
|
138
|
+
align-items: center;
|
|
139
|
+
|
|
140
|
+
picture {
|
|
141
|
+
display: flex;
|
|
142
|
+
width: 100%;
|
|
143
|
+
height: 100%;
|
|
121
144
|
}
|
|
122
|
-
}
|
|
123
145
|
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
color: $link-color;
|
|
127
|
-
font-size: 1.3rem;
|
|
128
|
-
font-weight: 700;
|
|
129
|
-
line-height: 1.75rem;
|
|
146
|
+
img {
|
|
147
|
+
margin-right: 0;
|
|
130
148
|
}
|
|
131
149
|
}
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
&.natural-image-size {
|
|
153
|
+
.img-responsive {
|
|
154
|
+
position: static;
|
|
155
|
+
height: auto;
|
|
156
|
+
padding: 0;
|
|
132
157
|
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
line-height: 1.5rem;
|
|
158
|
+
figure.img-wrapper {
|
|
159
|
+
position: static;
|
|
160
|
+
margin: 0;
|
|
161
|
+
}
|
|
138
162
|
}
|
|
139
163
|
}
|
|
140
164
|
}
|
|
165
|
+
|
|
141
166
|
@include media-breakpoint-only(lg) {
|
|
142
167
|
.listing-item.card {
|
|
143
168
|
.card-body {
|
|
@@ -24,21 +24,22 @@
|
|
|
24
24
|
z-index: -1;
|
|
25
25
|
top: 0;
|
|
26
26
|
left: 0;
|
|
27
|
+
overflow: hidden;
|
|
27
28
|
width: 100%;
|
|
28
29
|
height: 100%;
|
|
29
|
-
overflow: hidden;
|
|
30
30
|
|
|
31
31
|
img {
|
|
32
32
|
position: absolute;
|
|
33
|
-
min-width: 100%;
|
|
34
|
-
min-height: 100%;
|
|
35
|
-
height: auto;
|
|
36
|
-
width: auto;
|
|
37
33
|
top: 50%;
|
|
38
34
|
left: 50%;
|
|
39
|
-
|
|
35
|
+
width: auto;
|
|
36
|
+
min-width: 100%;
|
|
40
37
|
max-width: unset;
|
|
38
|
+
height: auto;
|
|
39
|
+
min-height: 100%;
|
|
40
|
+
transform: translate(-50%, -50%);
|
|
41
41
|
}
|
|
42
|
+
|
|
42
43
|
&:after {
|
|
43
44
|
position: absolute;
|
|
44
45
|
width: 100%;
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
.block.listing .in-evidence {
|
|
2
|
+
.col-item {
|
|
3
|
+
margin-bottom: 22px;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.icon {
|
|
7
|
+
width: 32px;
|
|
8
|
+
height: 32px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.listing-item {
|
|
12
|
+
a {
|
|
13
|
+
display: inline;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.img-responsive-wrapper {
|
|
17
|
+
width: inherit;
|
|
18
|
+
|
|
19
|
+
.img-responsive {
|
|
20
|
+
.img-wrapper {
|
|
21
|
+
display: flex;
|
|
22
|
+
align-items: center;
|
|
23
|
+
|
|
24
|
+
picture {
|
|
25
|
+
display: flex;
|
|
26
|
+
width: 100%;
|
|
27
|
+
height: 100%;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
img {
|
|
31
|
+
margin-right: 0;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
&.natural-image-size {
|
|
37
|
+
.img-responsive {
|
|
38
|
+
position: static;
|
|
39
|
+
height: auto;
|
|
40
|
+
padding: 0;
|
|
41
|
+
|
|
42
|
+
figure.img-wrapper {
|
|
43
|
+
position: static;
|
|
44
|
+
margin: 0;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.img-link {
|
|
51
|
+
&:after {
|
|
52
|
+
position: absolute;
|
|
53
|
+
top: 0;
|
|
54
|
+
right: 0;
|
|
55
|
+
bottom: 0;
|
|
56
|
+
left: 0;
|
|
57
|
+
background-color: transparentize($color: white, $amount: 1);
|
|
58
|
+
content: '';
|
|
59
|
+
transition: 0.2s background-color ease;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
&:hover,
|
|
63
|
+
&:focus {
|
|
64
|
+
&:after {
|
|
65
|
+
background-color: transparentize($color: white, $amount: 0.9);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.card-title {
|
|
71
|
+
a {
|
|
72
|
+
display: inline;
|
|
73
|
+
width: initial;
|
|
74
|
+
color: $body-color;
|
|
75
|
+
text-decoration: none;
|
|
76
|
+
transition: 0.2s color ease;
|
|
77
|
+
|
|
78
|
+
&:hover,
|
|
79
|
+
&:focus {
|
|
80
|
+
color: $link-color;
|
|
81
|
+
text-decoration: underline;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.event-recurrences-more {
|
|
87
|
+
bottom: $v-gap * 3;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.in-evidence-cards-wrapper {
|
|
92
|
+
display: -ms-grid;
|
|
93
|
+
display: grid;
|
|
94
|
+
gap: 1.3rem;
|
|
95
|
+
-ms-grid-columns: 1fr 1.3rem 1fr 1.3rem 1fr;
|
|
96
|
+
grid-template-columns: 1fr 1fr 1fr;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.card-wrapper {
|
|
100
|
+
&:first-child {
|
|
101
|
+
grid-column: 1;
|
|
102
|
+
grid-row: 1 / 3;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
// smartphone
|
|
107
|
+
@media (max-width: 585px) {
|
|
108
|
+
.in-evidence-cards-wrapper {
|
|
109
|
+
.card-wrapper {
|
|
110
|
+
width: 100%;
|
|
111
|
+
margin: 0px;
|
|
112
|
+
}
|
|
113
|
+
display: block;
|
|
114
|
+
height: 100%;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
// tablet
|
|
118
|
+
@media (max-width: 1367px) and (min-width: 586px) {
|
|
119
|
+
.in-evidence-cards-wrapper {
|
|
120
|
+
grid-template-columns: auto auto;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
@@ -21,98 +21,96 @@
|
|
|
21
21
|
content: none;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
-
.
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
24
|
+
.link-button {
|
|
25
|
+
display: flex;
|
|
26
|
+
align-items: center;
|
|
27
|
+
justify-content: center;
|
|
28
|
+
margin: 30px 0;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
/*item is reusable in other components*/
|
|
28
33
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
34
|
+
.card.card-teaser.simple-card-default-item {
|
|
35
|
+
.categoryicon-top .icon {
|
|
36
|
+
width: 32px;
|
|
37
|
+
height: 32px;
|
|
38
|
+
color: $gray-secondary;
|
|
39
|
+
fill: $gray-secondary;
|
|
40
|
+
font-weight: 600;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.card-body {
|
|
44
|
+
a {
|
|
45
|
+
display: inline-block; //per avere il bordo tutto unito al focus di un link, ad esempio nelle card
|
|
46
|
+
&:link,
|
|
47
|
+
&:visited {
|
|
48
|
+
text-decoration: none;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
&:hover,
|
|
52
|
+
&:active {
|
|
53
|
+
text-decoration: underline;
|
|
54
|
+
}
|
|
35
55
|
}
|
|
36
56
|
|
|
37
|
-
.card-
|
|
57
|
+
.card-title {
|
|
58
|
+
margin-bottom: 10px;
|
|
59
|
+
|
|
38
60
|
a {
|
|
61
|
+
@include rem-size(font-size, 24);
|
|
62
|
+
@include rem-size(line-height, 26);
|
|
39
63
|
display: inline-block; //per avere il bordo tutto unito al focus di un link, ad esempio nelle card
|
|
40
|
-
|
|
41
|
-
&:visited {
|
|
42
|
-
text-decoration: none;
|
|
43
|
-
}
|
|
64
|
+
font-weight: 700;
|
|
44
65
|
|
|
45
66
|
&:hover,
|
|
46
67
|
&:active {
|
|
47
68
|
text-decoration: underline;
|
|
48
69
|
}
|
|
49
70
|
}
|
|
71
|
+
}
|
|
50
72
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
&:hover,
|
|
61
|
-
&:active {
|
|
62
|
-
text-decoration: underline;
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.category-top {
|
|
68
|
-
span.text {
|
|
69
|
-
span.text.fw-bold {
|
|
70
|
-
color: $link-color;
|
|
71
|
-
font-size: 0.875rem;
|
|
72
|
-
font-weight: 600 !important;
|
|
73
|
-
letter-spacing: 1px;
|
|
74
|
-
line-height: 1.313rem;
|
|
75
|
-
}
|
|
73
|
+
.category-top {
|
|
74
|
+
span.text {
|
|
75
|
+
span.text.fw-bold {
|
|
76
|
+
color: $link-color;
|
|
77
|
+
font-size: 0.875rem;
|
|
78
|
+
font-weight: 600 !important;
|
|
79
|
+
letter-spacing: 1px;
|
|
80
|
+
line-height: 1.313rem;
|
|
76
81
|
}
|
|
77
82
|
}
|
|
83
|
+
}
|
|
78
84
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
85
|
+
p.card-text {
|
|
86
|
+
font-size: 1rem;
|
|
87
|
+
line-height: 1.5rem;
|
|
82
88
|
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
}
|
|
89
|
+
div.document-date {
|
|
90
|
+
@include rem-size(font-size, 14);
|
|
86
91
|
}
|
|
87
92
|
}
|
|
93
|
+
}
|
|
88
94
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
a {
|
|
94
|
-
&:hover,
|
|
95
|
-
&:active {
|
|
96
|
-
text-decoration: underline;
|
|
97
|
-
}
|
|
95
|
+
.it-card-footer {
|
|
96
|
+
flex: 1 1 100%;
|
|
97
|
+
align-self: flex-end;
|
|
98
98
|
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
99
|
+
a {
|
|
100
|
+
&:hover,
|
|
101
|
+
&:active {
|
|
102
|
+
text-decoration: underline;
|
|
103
103
|
}
|
|
104
104
|
|
|
105
|
-
|
|
106
|
-
|
|
105
|
+
&:link,
|
|
106
|
+
&:visited {
|
|
107
|
+
text-decoration: none;
|
|
107
108
|
}
|
|
108
109
|
}
|
|
109
|
-
}
|
|
110
110
|
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
justify-content: center;
|
|
115
|
-
margin: 30px 0;
|
|
111
|
+
.icon {
|
|
112
|
+
min-width: unset;
|
|
113
|
+
}
|
|
116
114
|
}
|
|
117
115
|
}
|
|
118
116
|
|
|
@@ -146,6 +146,87 @@
|
|
|
146
146
|
margin-bottom: 0;
|
|
147
147
|
}
|
|
148
148
|
|
|
149
|
+
&.appearance_simple_card,
|
|
150
|
+
&.appearance_image_card {
|
|
151
|
+
.slider-container {
|
|
152
|
+
.slick-track {
|
|
153
|
+
align-items: stretch;
|
|
154
|
+
padding-bottom: 1.5rem;
|
|
155
|
+
|
|
156
|
+
.slick-slide {
|
|
157
|
+
height: auto;
|
|
158
|
+
|
|
159
|
+
> div {
|
|
160
|
+
height: 100%;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.it-single-slide-wrapper {
|
|
164
|
+
height: 100%;
|
|
165
|
+
|
|
166
|
+
.slide-wrapper {
|
|
167
|
+
height: 100%;
|
|
168
|
+
|
|
169
|
+
> .card,
|
|
170
|
+
> .card-wrapper {
|
|
171
|
+
height: 100%;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
> .card {
|
|
175
|
+
margin: 0.5rem 0;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.shadow,
|
|
179
|
+
.card-bg {
|
|
180
|
+
box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15) !important;
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
&.appearance_image_card {
|
|
190
|
+
.slider-container {
|
|
191
|
+
.slick-track {
|
|
192
|
+
align-items: start;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.slick-slide {
|
|
196
|
+
.slide-wrapper {
|
|
197
|
+
.listing-item {
|
|
198
|
+
margin-top: 0.5rem;
|
|
199
|
+
|
|
200
|
+
.img-responsive-wrapper {
|
|
201
|
+
.img-wrapper {
|
|
202
|
+
position: absolute;
|
|
203
|
+
height: 100%;
|
|
204
|
+
|
|
205
|
+
img {
|
|
206
|
+
min-width: unset !important;
|
|
207
|
+
min-height: unset !important;
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
&.natural-image-size {
|
|
212
|
+
.img-responsive {
|
|
213
|
+
position: static;
|
|
214
|
+
height: auto;
|
|
215
|
+
padding: 0;
|
|
216
|
+
|
|
217
|
+
figure.img-wrapper {
|
|
218
|
+
position: static;
|
|
219
|
+
margin: 0;
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
|
|
149
230
|
.slider-container.full-width {
|
|
150
231
|
.slick-arrow.slick-prev {
|
|
151
232
|
z-index: 1;
|
|
@@ -110,6 +110,18 @@
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
+
.bg-primary {
|
|
114
|
+
.search-container {
|
|
115
|
+
.filter-wrapper {
|
|
116
|
+
&.select-filter {
|
|
117
|
+
.react-select__input {
|
|
118
|
+
color: color-contrast($primary);
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
113
125
|
.bg-secondary {
|
|
114
126
|
.search-container {
|
|
115
127
|
.filter-wrapper {
|
|
@@ -140,6 +152,10 @@
|
|
|
140
152
|
.react-select__single-value {
|
|
141
153
|
color: $secondary-text !important;
|
|
142
154
|
}
|
|
155
|
+
|
|
156
|
+
.react-select__input {
|
|
157
|
+
color: color-contrast($secondary);
|
|
158
|
+
}
|
|
143
159
|
}
|
|
144
160
|
|
|
145
161
|
&.date-filter .DateRangePickerInput {
|
|
@@ -174,6 +174,7 @@
|
|
|
174
174
|
display: none;
|
|
175
175
|
}
|
|
176
176
|
}
|
|
177
|
+
|
|
177
178
|
.leaflet-container {
|
|
178
179
|
break-inside: avoid;
|
|
179
180
|
}
|
|
@@ -206,4 +207,36 @@
|
|
|
206
207
|
visibility: hidden;
|
|
207
208
|
}
|
|
208
209
|
}
|
|
210
|
+
|
|
211
|
+
//subsite footer
|
|
212
|
+
.subsite-footer {
|
|
213
|
+
display: none;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
//text editor styles
|
|
217
|
+
.public-ui {
|
|
218
|
+
p.callout-bg,
|
|
219
|
+
p.callout {
|
|
220
|
+
padding: 0rem 1.25rem;
|
|
221
|
+
border: none;
|
|
222
|
+
margin: 0.5rem 0rem;
|
|
223
|
+
box-shadow: none;
|
|
224
|
+
font-size: 1rem;
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.draft-text-larger {
|
|
229
|
+
font-size: 1.2rem;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.public-ui .draftjs-buttons a {
|
|
233
|
+
padding: 0rem;
|
|
234
|
+
background-color: white;
|
|
235
|
+
color: $link-color;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
//external link icon
|
|
239
|
+
svg.external-link {
|
|
240
|
+
display: none;
|
|
241
|
+
}
|
|
209
242
|
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
.contenttype-document {
|
|
2
|
+
@media print {
|
|
3
|
+
.PageHeaderWrapper {
|
|
4
|
+
&.mb-4 {
|
|
5
|
+
margin-bottom: 0rem;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.title-description-wrapper {
|
|
9
|
+
h1 {
|
|
10
|
+
font-size: 1.5rem;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
p {
|
|
16
|
+
margin-top: 1rem;
|
|
17
|
+
margin-bottom: 0rem;
|
|
18
|
+
font-size: 1rem;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|