@eeacms/volto-clms-theme 1.0.45 → 1.0.46

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 CHANGED
@@ -4,8 +4,22 @@ 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.46](https://github.com/eea/volto-clms-theme/compare/1.0.45...1.0.46)
8
+
9
+ - volto-form-block style [`#150`](https://github.com/eea/volto-clms-theme/pull/150)
10
+ - Bugs n improvements [`#149`](https://github.com/eea/volto-clms-theme/pull/149)
11
+ - Develop [`#148`](https://github.com/eea/volto-clms-theme/pull/148)
12
+ - li styles [`3b01bbf`](https://github.com/eea/volto-clms-theme/commit/3b01bbf09c1b60bde0bf101f8ca5382ded58763b)
13
+ - h1 display block [`5e922f6`](https://github.com/eea/volto-clms-theme/commit/5e922f60c4e5ce19c5b6949dab494add2140dd6e)
14
+ - dataset catalogue h1 display [`e88a6c8`](https://github.com/eea/volto-clms-theme/commit/e88a6c88b6ed3ddad765f9d4161ca405de04ecb4)
15
+ - fixed CclLoginModal PropTypes [`09db647`](https://github.com/eea/volto-clms-theme/commit/09db647d09af66ea717c0b9be1650bd99882c6e6)
16
+ - ESLint fix [`e4d19cd`](https://github.com/eea/volto-clms-theme/commit/e4d19cd1d78a8a1e82d606d6f3ac586c6122b8e2)
17
+
7
18
  #### [1.0.45](https://github.com/eea/volto-clms-theme/compare/1.0.44...1.0.45)
8
19
 
20
+ > 13 December 2021
21
+
22
+ - Develop [`#143`](https://github.com/eea/volto-clms-theme/pull/143)
9
23
  - Geonetwork importer [`#146`](https://github.com/eea/volto-clms-theme/pull/146)
10
24
  - @userschema endpoint based dynamic user profile form [`#145`](https://github.com/eea/volto-clms-theme/pull/145)
11
25
  - Changes after the release of ftw.tokenauth 2.0+cs5 [`#144`](https://github.com/eea/volto-clms-theme/pull/144)
package/Jenkinsfile CHANGED
@@ -31,8 +31,8 @@ pipeline {
31
31
  when {
32
32
  allOf {
33
33
  environment name: 'CHANGE_ID', value: ''
34
- not { branch 'master' }
35
34
  not { changelog '.*^Automated release [0-9\\.]+$' }
35
+ not { branch 'master' }
36
36
  }
37
37
  }
38
38
  steps {
@@ -63,7 +63,10 @@ pipeline {
63
63
  when {
64
64
  allOf {
65
65
  environment name: 'CHANGE_ID', value: ''
66
- not { changelog '.*^Automated release [0-9\\.]+$' }
66
+ anyOf {
67
+ not { changelog '.*^Automated release [0-9\\.]+$' }
68
+ branch 'master'
69
+ }
67
70
  }
68
71
  }
69
72
  steps {
@@ -108,7 +111,10 @@ pipeline {
108
111
  when {
109
112
  allOf {
110
113
  environment name: 'CHANGE_ID', value: ''
111
- not { changelog '.*^Automated release [0-9\\.]+$' }
114
+ anyOf {
115
+ not { changelog '.*^Automated release [0-9\\.]+$' }
116
+ branch 'master'
117
+ }
112
118
  }
113
119
  }
114
120
  steps {
@@ -159,12 +165,16 @@ pipeline {
159
165
 
160
166
  stage('Report to SonarQube') {
161
167
  when {
168
+ allOf {
162
169
  environment name: 'CHANGE_ID', value: ''
163
170
  anyOf {
164
171
  branch 'master'
165
- branch 'develop'
172
+ allOf {
173
+ branch 'develop'
174
+ not { changelog '.*^Automated release [0-9\\.]+$' }
175
+ }
166
176
  }
167
- not { changelog '.*^Automated release [0-9\\.]+$' }
177
+ }
168
178
  }
169
179
  steps {
170
180
  node(label: 'swarm') {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-clms-theme",
3
- "version": "1.0.45",
3
+ "version": "1.0.46",
4
4
  "description": "volto-clms-theme: Volto theme for CLMS site",
5
5
  "main": "src/index.js",
6
6
  "author": "CodeSyntax for the European Environment Agency",
@@ -1,5 +1,4 @@
1
1
  import React, { useEffect } from 'react';
2
- import PropTypes from 'prop-types';
3
2
  import CclModal from '@eeacms/volto-clms-theme/components/CclModal/CclModal';
4
3
  import { useDispatch, useSelector } from 'react-redux';
5
4
  import { getRegistry } from '@eeacms/volto-clms-theme/actions';
@@ -75,9 +74,4 @@ function CclLoginModal() {
75
74
  );
76
75
  }
77
76
 
78
- CclLoginModal.propTypes = {
79
- title: PropTypes.string.isRequired,
80
- children: PropTypes.node.isRequired,
81
- marginBottom: PropTypes.bool,
82
- };
83
77
  export default CclLoginModal;
@@ -0,0 +1,62 @@
1
+ div.form.block {
2
+ .ui.form input:not([type]):focus,
3
+ .ui.form input[type='date']:focus,
4
+ .ui.form input[type='datetime-local']:focus,
5
+ .ui.form input[type='email']:focus,
6
+ .ui.form input[type='number']:focus,
7
+ .ui.form input[type='password']:focus,
8
+ .ui.form input[type='search']:focus,
9
+ .ui.form input[type='tel']:focus,
10
+ .ui.form input[type='time']:focus,
11
+ .ui.form input[type='text']:focus,
12
+ .ui.form input[type='file']:focus,
13
+ .ui.form input[type='url']:focus {
14
+ border-color: #a0b128;
15
+ color: #a0b128;
16
+ }
17
+
18
+ .ui.form textarea:focus {
19
+ border-color: #a0b128;
20
+ }
21
+
22
+ .label-file-widget-input {
23
+ display: inline-block;
24
+ padding: 0.6rem 3rem;
25
+ border: 1px solid transparent;
26
+ border-color: #a0b128;
27
+ margin-top: 20px;
28
+ border-radius: 0px;
29
+ color: #a0b128;
30
+ cursor: pointer;
31
+ opacity: 1;
32
+ }
33
+
34
+ .label-file-widget-input:hover {
35
+ background-color: #a0b128;
36
+ color: white;
37
+ }
38
+
39
+ .ui.primary.button {
40
+ padding: 0.6rem 3rem;
41
+ border: 1px solid transparent;
42
+ background-color: #a0b128;
43
+ border-radius: 0px;
44
+ color: white;
45
+ font-size: 1rem;
46
+ line-height: 1.5;
47
+ text-align: center;
48
+ text-decoration: none;
49
+ transition: all 0.3s ease-out;
50
+ vertical-align: middle;
51
+ }
52
+
53
+ .ui.primary.button:hover {
54
+ border-color: #a0b128;
55
+ background-color: white;
56
+ color: #a0b128;
57
+ }
58
+
59
+ .dropzone-text {
60
+ color: #c7d5d8;
61
+ }
62
+ }
@@ -3,6 +3,7 @@
3
3
  @import url('home.css');
4
4
  @import url('menu.css');
5
5
  @import url('forms.css');
6
+ @import url('block-form.less');
6
7
  /*@import url("cards.css");*/
7
8
  @import url('maps.less');
8
9
 
@@ -102,8 +103,8 @@ li {
102
103
 
103
104
  .ul-list li::marker,
104
105
  .ol-list li::marker,
105
- ul > li,
106
- ol > li {
106
+ ul > li::marker,
107
+ ol > li::marker {
107
108
  color: #a0b128;
108
109
  }
109
110
 
@@ -1112,12 +1113,18 @@ body.section-map-viewer #page-document.ui.container {
1112
1113
  width: 100% !important;
1113
1114
  }
1114
1115
 
1116
+ /*DataSet catalogue */
1115
1117
  body.searchlib-page div#page-document {
1116
1118
  top: 0em !important;
1117
1119
  width: 1127px !important;
1118
1120
  max-width: 1127px !important;
1119
1121
  }
1120
1122
 
1123
+ div#page-document h1.documentFirstHeading {
1124
+ display: block !important;
1125
+ }
1126
+
1127
+ /**/
1121
1128
  .metadata.image img {
1122
1129
  max-width: 100%;
1123
1130
  }