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.
- package/.github/workflows/develop.yml +12 -14
- package/CHANGELOG.md +14 -0
- package/package.json +1 -1
- package/publiccode.yml +2 -2
- package/razzle.extend.js +2 -2
- package/src/theme/ItaliaTheme/Addons/volto-gdpr-privacy.scss +9 -0
- package/src/theme/_site-variables.scss +0 -10
- package/src/theme/bootstrap-override/bootstrap-italia/_headercenter.scss +6 -4
|
@@ -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
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
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
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-
|
|
230
|
+
releaseDate: '2023-08-18'
|
|
231
231
|
softwareType: standalone/web
|
|
232
|
-
softwareVersion: 8.3.
|
|
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
|
|
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
|
|
78
|
+
test: /\.(png|jpe?g)$/i,
|
|
79
79
|
use: [
|
|
80
80
|
{
|
|
81
81
|
loader: 'url-loader',
|
|
@@ -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
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
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
|
}
|