@eeacms/volto-clms-theme 1.0.119 → 1.0.120
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/CHANGELOG.md +14 -0
- package/package.json +1 -1
- package/src/components/Blocks/CclHomeBgImageBlock/CclGreenBgView.jsx +2 -0
- package/src/components/Blocks/CustomTemplates/VoltoTabsBlock/custom.less +1 -0
- package/src/components/CLMSDatasetDetailView/CLMSDatasetDetailView.jsx +3 -5
- package/src/components/CLMSMeetingView/CLMSMeetingView.jsx +7 -1
- package/src/components/CclCard/CclCard.jsx +20 -20
- package/src/components/CclCard/cards.less +3 -12
- package/src/components/CclLoginModal/CclLoginModal.jsx +2 -5
- package/theme/clms/css/carousel.css +2 -4
- package/theme/clms/css/home.css +1 -2
- package/theme/clms/css/maps.less +8 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
### [1.0.120](https://github.com/eea/volto-clms-theme/compare/1.0.119...1.0.120) - 2 September 2022
|
|
8
|
+
|
|
9
|
+
#### :bug: Bug Fixes
|
|
10
|
+
|
|
11
|
+
- fix: use plain a for EU Login URL [Mikel Larreategi - [`e8d2d66`](https://github.com/eea/volto-clms-theme/commit/e8d2d664e750df517a8d955c4833a70e0f8b34e3)]
|
|
12
|
+
|
|
13
|
+
#### :hammer_and_wrench: Others
|
|
14
|
+
|
|
15
|
+
- Map login button fix [rodriama - [`0e7e520`](https://github.com/eea/volto-clms-theme/commit/0e7e520ac2515846b4af6e782a9f4cdc2375a467)]
|
|
16
|
+
- Card doc fix [rodriama - [`556e33c`](https://github.com/eea/volto-clms-theme/commit/556e33c833b9980edab3b778fc408e662fd5fffd)]
|
|
17
|
+
- ESLint fix [rodriama - [`d55db81`](https://github.com/eea/volto-clms-theme/commit/d55db818a02be4ccfcc524c1f03005600644a9e4)]
|
|
18
|
+
- Credits pop up fix [rodriama - [`3772c16`](https://github.com/eea/volto-clms-theme/commit/3772c163a0a998a7dc7b0fddd176346f2d56a4e1)]
|
|
19
|
+
- ESLint fix [rodriama - [`08a9bd8`](https://github.com/eea/volto-clms-theme/commit/08a9bd8c3cc78d928df58cc8b66fa3aea81f2b13)]
|
|
20
|
+
- Event detail segment [rodriama - [`524e3ff`](https://github.com/eea/volto-clms-theme/commit/524e3fff130ae53ffb09aa534d120677e5fd1c1a)]
|
|
7
21
|
### [1.0.119](https://github.com/eea/volto-clms-theme/compare/1.0.118...1.0.119) - 1 September 2022
|
|
8
22
|
|
|
9
23
|
#### :bug: Bug Fixes
|
package/package.json
CHANGED
|
@@ -77,6 +77,7 @@ const CLMSDatasetDetailView = ({ content, token }) => {
|
|
|
77
77
|
key={item.id}
|
|
78
78
|
loading={geonetwork_importation.loading}
|
|
79
79
|
circular
|
|
80
|
+
style={{ width: '50%' }}
|
|
80
81
|
>
|
|
81
82
|
<strong>
|
|
82
83
|
{item.title} (from {item.type}):{' '}
|
|
@@ -203,6 +204,7 @@ const CLMSDatasetDetailView = ({ content, token }) => {
|
|
|
203
204
|
key={'wms-layers-import'}
|
|
204
205
|
loading={wms_layers_importation?.loading}
|
|
205
206
|
circular
|
|
207
|
+
style={{ width: '50%' }}
|
|
206
208
|
>
|
|
207
209
|
<Modal
|
|
208
210
|
onClose={() => {
|
|
@@ -288,17 +290,13 @@ const CLMSDatasetDetailView = ({ content, token }) => {
|
|
|
288
290
|
</p>
|
|
289
291
|
)}
|
|
290
292
|
</Segment>
|
|
291
|
-
</Segment.Group>
|
|
292
|
-
)}
|
|
293
|
-
|
|
294
|
-
{user?.roles && user.roles.includes('Manager') && (
|
|
295
|
-
<Segment.Group compact horizontal>
|
|
296
293
|
<Segment
|
|
297
294
|
padded={'very'}
|
|
298
295
|
color={'olive'}
|
|
299
296
|
key={'wms-fields-import'}
|
|
300
297
|
loading={wms_fields_importation?.loading}
|
|
301
298
|
circular
|
|
299
|
+
style={{ width: '50%' }}
|
|
302
300
|
>
|
|
303
301
|
<Modal
|
|
304
302
|
onClose={() => {
|
|
@@ -288,7 +288,13 @@ export const CLMSMeetingView = (props) => {
|
|
|
288
288
|
</Segment.Group>
|
|
289
289
|
)}
|
|
290
290
|
{content.description}
|
|
291
|
-
<Segment
|
|
291
|
+
<Segment
|
|
292
|
+
compact
|
|
293
|
+
padded={'small'}
|
|
294
|
+
color={'olive'}
|
|
295
|
+
floated="right"
|
|
296
|
+
style={{ marginRight: 0 }}
|
|
297
|
+
>
|
|
292
298
|
<div className="dataset-info-field">
|
|
293
299
|
<div className="dataset-field-title">
|
|
294
300
|
<Header>{intl.formatMessage(messages.when)}</Header>
|
|
@@ -49,30 +49,30 @@ const CardLink = ({ url, children, className, condition = true }) => {
|
|
|
49
49
|
const DocCard = ({ card, url, showEditor, children }) => {
|
|
50
50
|
return (
|
|
51
51
|
<>
|
|
52
|
-
<div className="card-doc-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
<
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
<div className="doc-description">{card?.description}</div>
|
|
52
|
+
<div className="card-doc-header">
|
|
53
|
+
<div className="card-doc-title">
|
|
54
|
+
{card?.Type === 'TechnicalLibrary' ? (
|
|
55
|
+
<a href={`${card['@id']}/@@download/file`}>{card?.title}</a>
|
|
56
|
+
) : (
|
|
57
|
+
<Link to={url}>{card?.title}</Link>
|
|
58
|
+
)}
|
|
59
|
+
{card?.Type === 'TechnicalLibrary' && showEditor && (
|
|
60
|
+
<Link to={`${url}/edit`}>
|
|
61
|
+
<Icon
|
|
62
|
+
name={penSVG}
|
|
63
|
+
size="15px"
|
|
64
|
+
className="circled"
|
|
65
|
+
title={'Edit'}
|
|
66
|
+
/>
|
|
67
|
+
</Link>
|
|
68
|
+
)}
|
|
69
|
+
</div>
|
|
71
70
|
{card?.Type === 'TechnicalLibrary' && (
|
|
72
71
|
<div className="card-doc-size">{card.getObjSize || ''}</div>
|
|
73
72
|
)}
|
|
74
|
-
{children}
|
|
75
73
|
</div>
|
|
74
|
+
<div className="card-doc-description">{card?.description}</div>
|
|
75
|
+
{children}
|
|
76
76
|
</>
|
|
77
77
|
);
|
|
78
78
|
};
|
|
@@ -375,13 +375,9 @@
|
|
|
375
375
|
border-bottom: solid 1px #a0b12833;
|
|
376
376
|
}
|
|
377
377
|
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
.card-doc:not(:last-of-type) {
|
|
384
|
-
border-bottom: solid 1px #a0b12833;
|
|
378
|
+
.card-doc-header {
|
|
379
|
+
display: flex;
|
|
380
|
+
justify-content: space-between;
|
|
385
381
|
}
|
|
386
382
|
|
|
387
383
|
.card-doc-title {
|
|
@@ -391,11 +387,6 @@
|
|
|
391
387
|
font-weight: bold;
|
|
392
388
|
}
|
|
393
389
|
|
|
394
|
-
.card-doc-text {
|
|
395
|
-
display: flex;
|
|
396
|
-
justify-content: space-between;
|
|
397
|
-
}
|
|
398
|
-
|
|
399
390
|
.card-doc-size {
|
|
400
391
|
margin-left: 1rem;
|
|
401
392
|
white-space: nowrap;
|
|
@@ -90,12 +90,9 @@ function CclLoginModal(props) {
|
|
|
90
90
|
</div>
|
|
91
91
|
<div className="actions">
|
|
92
92
|
<div className="modal-buttons">
|
|
93
|
-
<
|
|
94
|
-
href={loginUrl || '#'}
|
|
95
|
-
className="ccl-button ccl-button-green"
|
|
96
|
-
>
|
|
93
|
+
<a href={loginUrl || '#'} className="ccl-button ccl-button-green">
|
|
97
94
|
Login using EU Login
|
|
98
|
-
</
|
|
95
|
+
</a>
|
|
99
96
|
</div>
|
|
100
97
|
</div>
|
|
101
98
|
</CclModal>
|
|
@@ -496,7 +496,7 @@
|
|
|
496
496
|
.ccl-banner-info {
|
|
497
497
|
position: absolute;
|
|
498
498
|
z-index: 1;
|
|
499
|
-
right:
|
|
499
|
+
right: 2rem;
|
|
500
500
|
bottom: 2rem;
|
|
501
501
|
display: none;
|
|
502
502
|
width: 100%;
|
|
@@ -524,9 +524,7 @@
|
|
|
524
524
|
}
|
|
525
525
|
|
|
526
526
|
.ccl-banner-info-link {
|
|
527
|
-
|
|
528
|
-
width: 100%;
|
|
529
|
-
text-align: right;
|
|
527
|
+
float: right;
|
|
530
528
|
}
|
|
531
529
|
|
|
532
530
|
.tabs-block > .styled {
|
package/theme/clms/css/home.css
CHANGED
|
@@ -68,7 +68,6 @@
|
|
|
68
68
|
|
|
69
69
|
.ccl-banner-top-bar {
|
|
70
70
|
height: 2rem;
|
|
71
|
-
padding: 0 1rem;
|
|
72
71
|
border-top: 1px solid #6c6e73;
|
|
73
72
|
border-bottom: 1px solid #6c6e73;
|
|
74
73
|
background-color: #a0b128;
|
|
@@ -91,13 +90,13 @@
|
|
|
91
90
|
}
|
|
92
91
|
|
|
93
92
|
.ccl-banner-top-bar .ccl-container .ccl-banner-top-bar-right {
|
|
94
|
-
margin-left: 0.5rem;
|
|
95
93
|
cursor: pointer;
|
|
96
94
|
}
|
|
97
95
|
|
|
98
96
|
.ccl-banner-top-bar .ccl-container {
|
|
99
97
|
display: flex;
|
|
100
98
|
height: 100%;
|
|
99
|
+
padding: 0 2rem;
|
|
101
100
|
align-items: center;
|
|
102
101
|
justify-content: space-between;
|
|
103
102
|
}
|
package/theme/clms/css/maps.less
CHANGED
|
@@ -583,7 +583,14 @@
|
|
|
583
583
|
margin: 0;
|
|
584
584
|
background: none;
|
|
585
585
|
float: none;
|
|
586
|
-
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
.login-panel .login-text {
|
|
589
|
+
margin-bottom: 1rem;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
.login-panel .login-block .ccl-button {
|
|
593
|
+
margin: 0;
|
|
587
594
|
}
|
|
588
595
|
|
|
589
596
|
#login_close {
|