design-comuni-plone-theme 8.3.1 → 8.3.2

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.
@@ -33,17 +33,15 @@ jobs:
33
33
  ADDON_PATH=design-comuni-plone-theme
34
34
  VOLTO_VERSION=17.0.0-alpha.19
35
35
 
36
- # deploy disabled. see https://gitlab.com/redturtle/io-comune/io-comune-demo-theme
37
- #
38
- # - name: Deploy to rancher
39
- # uses: redturtle/rancher-deploy-action@v0.2.0
40
- # with:
41
- # host: ${{ secrets.RANCHER_HOST }}
42
- # api-username: ${{ secrets.RANCHER_API_USERNAME }}
43
- # api-password: ${{ secrets.RANCHER_API_PASSWORD }}
44
- # cluster-id: ${{ secrets.RANCHER_CLUSTER_ID }}
45
- # project-id: ${{ secrets.RANCHER_PROJECT_ID }}
46
- # namespace: ${{ secrets.RANCHER_NAMESPACE_DEVELOP }}
47
- # workload: ${{ secrets.RANCHER_WORKLOAD_DEVELOP }}
48
- # image: redturtletech/io-comune-base:develop
49
- # slack-hook-url: ${{ secrets.RANCHER_SLACK_HOOK_URL }}
36
+ - name: Deploy to rancher
37
+ uses: redturtle/rancher-deploy-action@v0.2.0
38
+ with:
39
+ host: ${{ secrets.RANCHER_HOST }}
40
+ api-username: ${{ secrets.RANCHER_API_USERNAME }}
41
+ api-password: ${{ secrets.RANCHER_API_PASSWORD }}
42
+ cluster-id: ${{ secrets.RANCHER_CLUSTER_ID }}
43
+ project-id: ${{ secrets.RANCHER_PROJECT_ID }}
44
+ namespace: ${{ secrets.RANCHER_NAMESPACE_DEVELOP }}
45
+ workload: ${{ secrets.RANCHER_WORKLOAD_DEVELOP }}
46
+ image: redturtletech/io-comune-base:develop
47
+ slack-hook-url: ${{ secrets.RANCHER_SLACK_HOOK_URL }}
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
 
2
2
 
3
+ ## [8.3.2](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.3.1...v8.3.2) (2023-08-18)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * actually use color variable for privacy link in cookie banner ([711efed](https://github.com/RedTurtle/design-comuni-plone-theme/commit/711efed3b9d67d5414bdba5ccf86161fe152943e))
9
+ * focus styles on search button ([#281](https://github.com/RedTurtle/design-comuni-plone-theme/issues/281)) ([d3cddee](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d3cddee4cdfd2fed9bd230b036b29a057851bf25))
10
+ * webp static imports in jsx code ([b1ab875](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b1ab87519b9fb29fcd05edb2bddc3c953b805957))
11
+
12
+
13
+ ### Documentation
14
+
15
+ * updated publiccode ([a2d8fb5](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a2d8fb5efe1cf2a813efe44189d98dc9d516d705))
16
+
3
17
  ## [8.3.1](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.3.0...v8.3.1) (2023-08-10)
4
18
 
5
19
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "design-comuni-plone-theme",
3
3
  "description": "Volto Theme for Italia design guidelines",
4
4
  "license": "GPL-v3",
5
- "version": "8.3.1",
5
+ "version": "8.3.2",
6
6
  "main": "src/index.js",
7
7
  "keywords": [
8
8
  "volto-addon",
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: '2023-08-10'
230
+ releaseDate: '2023-08-18'
231
231
  softwareType: standalone/web
232
- softwareVersion: 8.3.1
232
+ softwareVersion: 8.3.2
233
233
  url: 'https://github.com/italia/design-comuni-plone-theme'
234
234
  usedBy:
235
235
  - ASP Comuni Modenesi Area Nord
package/razzle.extend.js CHANGED
@@ -72,10 +72,10 @@ const modify = (webpackConfig, { target, dev }, webpackObject) => {
72
72
  webpackConfig.module.rules.push(SVG_LOADER);
73
73
 
74
74
  const urlLoader = webpackConfig.module.rules.find(urlLoaderFinder);
75
- urlLoader.exclude = [/\.(png|jpe?g|webp)$/i, ...(urlLoader.exclude || [])];
75
+ urlLoader.exclude = [/\.(png|jpe?g)$/i, ...(urlLoader.exclude || [])];
76
76
  // see: node_modules/razzle/config/createConfig.js
77
77
  const IMG_LOADER = {
78
- test: /\.(png|jpe?g|webp)$/i,
78
+ test: /\.(png|jpe?g)$/i,
79
79
  use: [
80
80
  {
81
81
  loader: 'url-loader',
@@ -11,6 +11,15 @@
11
11
  }
12
12
  }
13
13
 
14
+ .description a {
15
+ color: $gdpr-link-color;
16
+
17
+ &:hover,
18
+ &:focus {
19
+ color: darken($gdpr-link-color, 10%);
20
+ }
21
+ }
22
+
14
23
  .gdpr-privacy-content-wrapper {
15
24
  padding: 2rem 0;
16
25
 
@@ -29,16 +29,6 @@ $gdpr-link-color: #004285 !default;
29
29
  $gdpr-focus-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
30
30
  0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem $gdpr-focus-color !default;
31
31
 
32
- // ACCESSIBILITY - SEARCH BUTTON
33
- $focus-outline-color-on-primary: #fff !default;
34
-
35
- $search-focus-outline-color: $focus-outline-color-on-primary !default;
36
-
37
- $focus-outline-shadow-on-primary: 0px 0px 7px 7px
38
- $focus-outline-color-on-primary !default;
39
-
40
- $search-focus-outline-shadow: $focus-outline-shadow-on-primary !default;
41
-
42
32
  $caption-text: #455b71 !default;
43
33
 
44
34
  $primary-a0: hsl($primary-h, 62%, 97%) !default;
@@ -14,10 +14,12 @@
14
14
  }
15
15
 
16
16
  .it-search-wrapper {
17
- a.search-link:focus {
18
- border: 1px solid $primary !important;
19
- box-shadow: $search-focus-outline-shadow !important;
20
- outline: $search-focus-outline-color !important;
17
+ a.search-link {
18
+ outline: $header-center-bg-color 2px solid !important;
19
+
20
+ &:focus {
21
+ box-shadow: 0 0 0 5px $focus-outline-color !important;
22
+ }
21
23
  }
22
24
  }
23
25
  }