From 2e2b3136bd7b0149ab09e452d11a83134e0a9493 Mon Sep 17 00:00:00 2001 From: Victor Fernandez de Alba Date: Thu, 5 Dec 2024 17:51:43 +0100 Subject: [PATCH 1/2] Remove SemanticUI CSS declaration `overflow-x: hidden` in BODY tag. --- packages/volto/theme/themes/pastanaga/extras/main.less | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/volto/theme/themes/pastanaga/extras/main.less b/packages/volto/theme/themes/pastanaga/extras/main.less index 1062b14845..d2fc15eec8 100644 --- a/packages/volto/theme/themes/pastanaga/extras/main.less +++ b/packages/volto/theme/themes/pastanaga/extras/main.less @@ -17,6 +17,9 @@ body { display: flex; + // RAC Popovers have problems with the default declaration coming from Semantic UI + // that forces `overflow-x: hidden` on the BODY. + overflow-x: initial; @media only screen and (max-width: @largestMobileScreen) { flex-direction: column; From 0ed695fe09bbec996a4ce5fa8d22352cdc030079 Mon Sep 17 00:00:00 2001 From: Victor Fernandez de Alba Date: Thu, 5 Dec 2024 18:00:00 +0100 Subject: [PATCH 2/2] Changelog --- packages/volto/news/6513.bugfix | 1 + 1 file changed, 1 insertion(+) create mode 100644 packages/volto/news/6513.bugfix diff --git a/packages/volto/news/6513.bugfix b/packages/volto/news/6513.bugfix new file mode 100644 index 0000000000..2564e1ccd7 --- /dev/null +++ b/packages/volto/news/6513.bugfix @@ -0,0 +1 @@ +Removed SemanticUI CSS declaration `overflow-x: hidden` in BODY tag. @sneridagh