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.
- package/.github/workflows/develop.yml +12 -14
- package/CHANGELOG.md +46 -0
- package/locales/de/LC_MESSAGES/volto.po +31 -16
- package/locales/en/LC_MESSAGES/volto.po +36 -21
- package/locales/es/LC_MESSAGES/volto.po +31 -16
- package/locales/fr/LC_MESSAGES/volto.po +31 -16
- package/locales/it/LC_MESSAGES/volto.po +32 -17
- package/locales/volto.pot +32 -17
- package/package.json +1 -1
- package/publiccode.yml +2 -2
- package/razzle.extend.js +2 -2
- package/src/components/ItaliaTheme/Blocks/Listing/Commons/utils.js +63 -0
- package/src/components/ItaliaTheme/Blocks/Listing/SliderTemplate.jsx +235 -65
- package/src/components/ItaliaTheme/Breadcrumbs/Breadcrumbs.jsx +2 -2
- package/src/components/ItaliaTheme/CustomerSatisfaction/FeedbackForm.jsx +11 -7
- package/src/components/ItaliaTheme/Footer/FooterPNRRLogo.jsx +2 -2
- package/src/components/ItaliaTheme/Footer/logo-eu-inverted.svg +1 -17
- package/src/components/ItaliaTheme/Header/HeaderSearch/SearchModal.jsx +38 -11
- package/src/components/ItaliaTheme/Search/Search.jsx +7 -3
- package/src/components/ItaliaTheme/Search/utils.js +5 -3
- package/src/components/ItaliaTheme/Unauthorized/Unauthorized.jsx +3 -1
- package/src/components/ItaliaTheme/View/PersonaView/PersonaRuolo.jsx +108 -8
- package/src/components/ItaliaTheme/manage/Widgets/SubFooterConfigurationForm.jsx +1 -0
- package/src/customizations/volto/components/manage/Blocks/ToC/View.jsx +2 -0
- package/src/customizations/volto/components/manage/Blocks/ToC/variations/DefaultTocRenderer.jsx +99 -0
- package/src/customizations/volto/components/theme/Breadcrumbs/Breadcrumbs.jsx +3 -3
- package/src/customizations/volto/components/theme/View/View.jsx +308 -0
- package/src/customizations/volto/helpers/Api/Api.jsx +131 -0
- package/src/customizations/volto/middleware/api.js +362 -0
- package/src/customizations/volto/middleware/blacklistRoutes.js +47 -0
- package/src/theme/ItaliaTheme/Addons/volto-gdpr-privacy.scss +9 -0
- package/src/theme/ItaliaTheme/Blocks/_imageBlock.scss +4 -0
- package/src/theme/ItaliaTheme/Blocks/_sliderTemplate.scss +18 -4
- package/src/theme/ItaliaTheme/Components/_search.scss +6 -0
- package/src/theme/ItaliaTheme/_common.scss +15 -0
- package/src/theme/ItaliaTheme/_css_variables.scss +3 -0
- package/src/theme/_cms-ui.scss +9 -0
- package/src/theme/_site-variables.scss +0 -10
- package/src/theme/bootstrap-override/bootstrap-italia/_footer.scss +3 -3
- package/src/theme/bootstrap-override/bootstrap-italia/_headercenter.scss +6 -4
- package/src/theme/extras/_search.scss +31 -0
- package/src/theme/site.scss +1 -0
|
@@ -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
|
}
|
|
@@ -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
|
}
|