design-comuni-plone-theme 11.24.0 → 11.24.1
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/npm.yml +1 -1
- package/.yarn/install-state.gz +0 -0
- package/CHANGELOG.md +17 -0
- package/RELEASE.md +0 -4
- package/package.json +1 -1
- package/src/theme/ItaliaTheme/Blocks/common/_searchBlockFilters.scss +10 -4
- package/src/theme/ItaliaTheme/Widgets/_reactSelect.scss +5 -2
- package/src/theme/ItaliaTheme/_common.scss +5 -3
- package/src/theme/_site-variables.scss +1 -1
- package/src/theme/bootstrap-override/bootstrap-italia/_focus.scss +5 -2
- package/src/theme/bootstrap-override/bootstrap-italia/_headercenter.scss +5 -2
|
@@ -36,7 +36,7 @@ jobs:
|
|
|
36
36
|
run: |
|
|
37
37
|
curl --fail --request POST \
|
|
38
38
|
--form token=${{ secrets.TOKEN }} \
|
|
39
|
-
--form ref=
|
|
39
|
+
--form ref=3.2.x \
|
|
40
40
|
--form "variables[ADDON_NAME]=design-comuni-plone-theme" \
|
|
41
41
|
--form "variables[ADDON_TAG]=${{ steps.get_version.outputs.VERSION }}" \
|
|
42
42
|
"https://gitlab.com/api/v4/projects/${{ secrets.PROJECT_ID }}/trigger/pipeline"
|
package/.yarn/install-state.gz
CHANGED
|
Binary file
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [11.24.1](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v11.24.0...v11.24.1) (2024-10-09)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* changed double focus to outline and box-shadow ([#785](https://github.com/RedTurtle/design-comuni-plone-theme/issues/785)) ([1e890b5](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1e890b5b8748d7a0a12703fa39a2d4fec4dc2f23))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Maintenance
|
|
12
|
+
|
|
13
|
+
* fixed io-comune release script ([150c0bb](https://github.com/RedTurtle/design-comuni-plone-theme/commit/150c0bba50bb501f463cdbcf931587dfc0087443))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Documentation
|
|
17
|
+
|
|
18
|
+
* cleaned up release log ([5423dfe](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5423dfe2480689de9f10a531dcc12046cc0de123))
|
|
19
|
+
|
|
3
20
|
## [11.24.0](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v11.23.2...v11.24.0) (2024-10-03)
|
|
4
21
|
|
|
5
22
|
|
package/RELEASE.md
CHANGED
|
@@ -58,10 +58,6 @@
|
|
|
58
58
|
|
|
59
59
|
- Gli utenti SPID vengono ora direttamente rediretti al link finale quando viene utilizzato un CT di tipo Collegamento
|
|
60
60
|
|
|
61
|
-
### Novità
|
|
62
|
-
|
|
63
|
-
- ...
|
|
64
|
-
|
|
65
61
|
### Fix
|
|
66
62
|
|
|
67
63
|
- L'assegnazione dei ruoli nella vista gruppi funziona correttamente per tutti i gruppi di utenti.
|
package/package.json
CHANGED
|
@@ -15,8 +15,11 @@
|
|
|
15
15
|
min-width: 150px;
|
|
16
16
|
|
|
17
17
|
&:focus-within {
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
outline: 2px solid $outer-focus-outline !important;
|
|
19
|
+
outline-offset: 2px;
|
|
20
|
+
|
|
21
|
+
border: none !important;
|
|
22
|
+
box-shadow: 0 0 0 2px $inner-focus-shadow !important;
|
|
20
23
|
}
|
|
21
24
|
|
|
22
25
|
.react-select__control {
|
|
@@ -58,8 +61,11 @@
|
|
|
58
61
|
}
|
|
59
62
|
|
|
60
63
|
&.DateInput_input__focused {
|
|
61
|
-
|
|
62
|
-
|
|
64
|
+
outline: 2px solid $outer-focus-outline !important;
|
|
65
|
+
outline-offset: 2px;
|
|
66
|
+
|
|
67
|
+
border: none !important;
|
|
68
|
+
box-shadow: 0 0 0 2px $inner-focus-shadow !important;
|
|
63
69
|
}
|
|
64
70
|
}
|
|
65
71
|
|
|
@@ -20,7 +20,10 @@
|
|
|
20
20
|
.react-select__control,
|
|
21
21
|
.react-select__control:hover {
|
|
22
22
|
&.react-select__control--is-focused {
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
outline: 2px solid $outer-focus-outline !important;
|
|
24
|
+
outline-offset: 2px;
|
|
25
|
+
|
|
26
|
+
border: none !important;
|
|
27
|
+
box-shadow: 0 0 0 2px $inner-focus-shadow !important;
|
|
25
28
|
}
|
|
26
29
|
}
|
|
@@ -7,9 +7,11 @@
|
|
|
7
7
|
button.btn,
|
|
8
8
|
button.rounded-right {
|
|
9
9
|
&:focus {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
outline: 2px solid $outer-focus-outline !important;
|
|
11
|
+
outline-offset: 2px;
|
|
12
|
+
|
|
13
|
+
border: none !important;
|
|
14
|
+
box-shadow: 0 0 0 2px $inner-focus-shadow !important;
|
|
13
15
|
}
|
|
14
16
|
}
|
|
15
17
|
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
:focus:not(.focus--mouse),
|
|
2
2
|
%focus {
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
outline: 2px solid $outer-focus-outline !important;
|
|
4
|
+
outline-offset: 2px;
|
|
5
|
+
|
|
6
|
+
border: none !important;
|
|
7
|
+
box-shadow: 0 0 0 2px $inner-focus-shadow !important;
|
|
5
8
|
}
|
|
6
9
|
|
|
7
10
|
.skiplinks a:focus:not(.focus--mouse) {
|
|
@@ -18,8 +18,11 @@
|
|
|
18
18
|
border: $header-center-bg-color 2px solid !important;
|
|
19
19
|
|
|
20
20
|
&:focus {
|
|
21
|
-
outline:
|
|
22
|
-
|
|
21
|
+
outline: 2px solid $outer-focus-outline !important;
|
|
22
|
+
outline-offset: 2px;
|
|
23
|
+
|
|
24
|
+
border: none !important;
|
|
25
|
+
box-shadow: 0 0 0 2px $inner-focus-shadow !important;
|
|
23
26
|
}
|
|
24
27
|
}
|
|
25
28
|
}
|