From 5c6d83571d14a6a2aacdf832b5ec147368853229 Mon Sep 17 00:00:00 2001 From: Alfonso Salces Date: Thu, 8 Jun 2023 13:04:53 +0200 Subject: [PATCH] MOBILE-4270 theme: Fix popover issue with chrome 114 --- src/theme/theme.base.scss | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/theme/theme.base.scss b/src/theme/theme.base.scss index 366fea4b8..fb1f62a78 100644 --- a/src/theme/theme.base.scss +++ b/src/theme/theme.base.scss @@ -1806,3 +1806,21 @@ ion-modal.core-modal-no-background { display: none; } } + +/* +* This is to solve popver issue in chrome 114 +* For more info see: https://github.com/ionic-team/ionic-framework/issues/27599 +*/ +[popover].popover-viewport { + display: initial; + position: initial; + margin: initial; + border: initial; + background: initial; + padding: initial; + width: initial; + height: initial; + overflow: initial; + inset: initial; + color: initial; +}