design-comuni-plone-theme 11.24.3 → 11.24.4

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.
Binary file
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
 
2
2
 
3
+ ## [11.24.4](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v11.24.3...v11.24.4) (2024-11-07)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * arlogin styles in 992px-1200px media query space ([#802](https://github.com/RedTurtle/design-comuni-plone-theme/issues/802)) ([eebf6e4](https://github.com/RedTurtle/design-comuni-plone-theme/commit/eebf6e4129c021dc361638c940b62b67a5b15739))
9
+ * page freeze when updateSideMenuOnLoadingBlocks=true and page has gallery ([#805](https://github.com/RedTurtle/design-comuni-plone-theme/issues/805)) ([cab333e](https://github.com/RedTurtle/design-comuni-plone-theme/commit/cab333e35dc7faac5fbc61a41fdec02922378b00))
10
+
11
+
12
+ ### Documentation
13
+
14
+ * update docs link in publiccode.yml ([#190](https://github.com/RedTurtle/design-comuni-plone-theme/issues/190)) ([34a35b2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/34a35b2ac7c6301e1bbf22a6109fef8d8135db3f))
15
+ * updated publiccode and release log ([67a062c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/67a062cf007333435046c1b3cf8cf0d34bf59abc))
16
+
3
17
  ## [11.24.3](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v11.24.2...v11.24.3) (2024-10-24)
4
18
 
5
19
 
package/RELEASE.md CHANGED
@@ -39,7 +39,13 @@
39
39
  ### Fix
40
40
 
41
41
  - ...
42
- -->
42
+ -->
43
+
44
+ ## Versione 11.24.4 (07/11/2024)
45
+
46
+ ### Fix
47
+
48
+ - Risolto un problema di visualizzazione grafica per il bottone di login all'area personale per alcune specifiche dimensioni di schermi
43
49
 
44
50
  ## Versione 11.24.3 (24/10/2024)
45
51
 
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": "11.24.3",
5
+ "version": "11.24.4",
6
6
  "main": "src/index.js",
7
7
  "repository": {
8
8
  "type": "git",
package/publiccode.yml CHANGED
@@ -20,7 +20,7 @@ logo: docs/logo-io-comune.png
20
20
  description:
21
21
  it:
22
22
  documentation: |-
23
- https://docs.google.com/document/d/1SThuxa_ah0BuNXukWs564kKPfprK41WLQE8Mome-0xg/
23
+ https://docs.google.com/document/d/1BrlGYmE3Z4y6FMIrfBJWOX1P2JVEGzJZS6TRbeIiFSk/edit?tab=t.0
24
24
  features:
25
25
  - PNRR
26
26
  - PNRR/Misura/1.2
@@ -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: '2024-10-24'
230
+ releaseDate: '2024-11-07'
231
231
  softwareType: standalone/web
232
- softwareVersion: 11.24.3
232
+ softwareVersion: 11.24.4
233
233
  url: 'https://github.com/italia/design-comuni-plone-theme'
234
234
  usedBy:
235
235
  - ASP Comuni Modenesi Area Nord
@@ -9,7 +9,7 @@ import { Button } from 'design-react-kit';
9
9
  const LoginButton = ({ children, baseLoginUrl, size = 'full' }) => {
10
10
  return baseLoginUrl ? (
11
11
  <Button
12
- className="btn-icon"
12
+ className="btn-icon login-button"
13
13
  color="primary"
14
14
  href={baseLoginUrl}
15
15
  icon={false}
@@ -67,9 +67,8 @@ export const useSideMenu = (content, documentBody) => {
67
67
  }
68
68
  if (observer) {
69
69
  observer.observe(documentBody.current, {
70
- //attributes: true,
71
70
  childList: true,
72
- subtree: true,
71
+ //subtree: true, //commentato, perchè a noi interessano solo i figli di primo livello. Con questo abilitato, se in pagina ci sono delle gallery si impalla il browser
73
72
  });
74
73
  }
75
74
  return () => {
@@ -381,3 +381,13 @@ iframe {
381
381
  }
382
382
  }
383
383
  }
384
+
385
+ .public-ui
386
+ .it-header-slim-wrapper
387
+ .it-header-slim-wrapper-content
388
+ .it-header-slim-right-zone.header-slim-right-zone
389
+ .login-button {
390
+ @media (min-width: #{map-get($grid-breakpoints, md)}) and (max-width:#{map-get($grid-breakpoints, xl)}) {
391
+ flex: unset;
392
+ }
393
+ }