From f207cf6601675879ccace5620a52c306ab5adc0e Mon Sep 17 00:00:00 2001 From: Arvid Norlin Date: Tue, 1 Jul 2025 05:32:10 +0000 Subject: [PATCH] Merged in fix/SW-2886 (pull request #2468) fix(SW-2886): Increase BookingWidget z-index if any field expanded * fix(SW-2886): Increase BookingWidget z-index if any field expanded Approved-by: Tobias Johansson Approved-by: Christian Andolf --- .../components/BookingWidget/bookingWidget.module.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/scandic-web/components/BookingWidget/bookingWidget.module.css b/apps/scandic-web/components/BookingWidget/bookingWidget.module.css index f20724e75..02ee42bac 100644 --- a/apps/scandic-web/components/BookingWidget/bookingWidget.module.css +++ b/apps/scandic-web/components/BookingWidget/bookingWidget.module.css @@ -4,6 +4,11 @@ width: 100%; } +/* Make sure Date Picker is placed on top of other sticky/fixed components */ +.wrapper:has([data-isopen="true"]) { + z-index: 100; +} + .formContainer { display: grid; grid-template-rows: auto 1fr;