design-comuni-plone-theme 8.3.1 → 8.4.0

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.
Files changed (42) hide show
  1. package/.github/workflows/develop.yml +12 -14
  2. package/CHANGELOG.md +46 -0
  3. package/locales/de/LC_MESSAGES/volto.po +31 -16
  4. package/locales/en/LC_MESSAGES/volto.po +36 -21
  5. package/locales/es/LC_MESSAGES/volto.po +31 -16
  6. package/locales/fr/LC_MESSAGES/volto.po +31 -16
  7. package/locales/it/LC_MESSAGES/volto.po +32 -17
  8. package/locales/volto.pot +32 -17
  9. package/package.json +1 -1
  10. package/publiccode.yml +2 -2
  11. package/razzle.extend.js +2 -2
  12. package/src/components/ItaliaTheme/Blocks/Listing/Commons/utils.js +63 -0
  13. package/src/components/ItaliaTheme/Blocks/Listing/SliderTemplate.jsx +235 -65
  14. package/src/components/ItaliaTheme/Breadcrumbs/Breadcrumbs.jsx +2 -2
  15. package/src/components/ItaliaTheme/CustomerSatisfaction/FeedbackForm.jsx +11 -7
  16. package/src/components/ItaliaTheme/Footer/FooterPNRRLogo.jsx +2 -2
  17. package/src/components/ItaliaTheme/Footer/logo-eu-inverted.svg +1 -17
  18. package/src/components/ItaliaTheme/Header/HeaderSearch/SearchModal.jsx +38 -11
  19. package/src/components/ItaliaTheme/Search/Search.jsx +7 -3
  20. package/src/components/ItaliaTheme/Search/utils.js +5 -3
  21. package/src/components/ItaliaTheme/Unauthorized/Unauthorized.jsx +3 -1
  22. package/src/components/ItaliaTheme/View/PersonaView/PersonaRuolo.jsx +108 -8
  23. package/src/components/ItaliaTheme/manage/Widgets/SubFooterConfigurationForm.jsx +1 -0
  24. package/src/customizations/volto/components/manage/Blocks/ToC/View.jsx +2 -0
  25. package/src/customizations/volto/components/manage/Blocks/ToC/variations/DefaultTocRenderer.jsx +99 -0
  26. package/src/customizations/volto/components/theme/Breadcrumbs/Breadcrumbs.jsx +3 -3
  27. package/src/customizations/volto/components/theme/View/View.jsx +308 -0
  28. package/src/customizations/volto/helpers/Api/Api.jsx +131 -0
  29. package/src/customizations/volto/middleware/api.js +362 -0
  30. package/src/customizations/volto/middleware/blacklistRoutes.js +47 -0
  31. package/src/theme/ItaliaTheme/Addons/volto-gdpr-privacy.scss +9 -0
  32. package/src/theme/ItaliaTheme/Blocks/_imageBlock.scss +4 -0
  33. package/src/theme/ItaliaTheme/Blocks/_sliderTemplate.scss +18 -4
  34. package/src/theme/ItaliaTheme/Components/_search.scss +6 -0
  35. package/src/theme/ItaliaTheme/_common.scss +15 -0
  36. package/src/theme/ItaliaTheme/_css_variables.scss +3 -0
  37. package/src/theme/_cms-ui.scss +9 -0
  38. package/src/theme/_site-variables.scss +0 -10
  39. package/src/theme/bootstrap-override/bootstrap-italia/_footer.scss +3 -3
  40. package/src/theme/bootstrap-override/bootstrap-italia/_headercenter.scss +6 -4
  41. package/src/theme/extras/_search.scss +31 -0
  42. package/src/theme/site.scss +1 -0
@@ -9,9 +9,9 @@
9
9
  align-items: flex-start;
10
10
  }
11
11
  .nextGenerationEULogo {
12
- margin-top: 10px;
13
- width: 178px;
14
- height: 56px;
12
+ height: 75px;
13
+ width: auto;
14
+ aspect-ratio: 167 / 41;
15
15
  }
16
16
  a {
17
17
  h2 {
@@ -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
  }
@@ -37,8 +37,39 @@ body.search-modal-opened {
37
37
 
38
38
  .nav-tabs {
39
39
  .nav-item {
40
+ &:first-of-type {
41
+ a.nav-link:not(.active):focus {
42
+ border-right: 2px solid hsl(36deg, 100%, 50%) !important;
43
+ border-left: 2px solid hsl(36deg, 100%, 50%) !important;
44
+ }
45
+ a.nav-link.active:focus {
46
+ border-right: 2px solid hsl(36deg, 100%, 50%) !important;
47
+ border-left: 2px solid hsl(36deg, 100%, 50%) !important;
48
+ }
49
+ }
50
+ &:last-of-type {
51
+ a.nav-link:focus {
52
+ border-right: 2px solid hsl(36deg, 100%, 50%) !important;
53
+ border-right: 2px solid hsl(36deg, 100%, 50%) !important;
54
+ }
55
+ }
40
56
  a.nav-link {
41
57
  width: 100%;
58
+ border-top: 2px solid transparent;
59
+ &.active {
60
+ border-left: none;
61
+ border-right: none;
62
+ }
63
+ &:focus {
64
+ border-color: hsl(36deg, 100%, 50%) !important;
65
+ box-shadow: 0 0 0 2px hsl(36deg, 100%, 50%) !important;
66
+ outline: none;
67
+ border-right: none;
68
+ border-left: none;
69
+ }
70
+ &:not(.active):focus {
71
+ border-right: 2px solid hsl(36deg, 100%, 50%) !important;
72
+ }
42
73
  }
43
74
  }
44
75
  }
@@ -18,6 +18,7 @@
18
18
  @import 'extras/tables';
19
19
 
20
20
  /*** ItaliaTheme ***/
21
+ @import 'ItaliaTheme/css_variables';
21
22
  @import 'ItaliaTheme/common';
22
23
  @import 'ItaliaTheme/main';
23
24
  @import 'ItaliaTheme/ar';