From 4de2fecc4aa6c24c8c61bed6f479bddec1208882 Mon Sep 17 00:00:00 2001 From: Harsh Kukreja Date: Wed, 25 Dec 2019 02:59:04 +0530 Subject: [PATCH 1/3] Datepicker z-index issue solved Signed-off-by: Harsh Kukreja --- themes/pmahomme/css/common.css.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/themes/pmahomme/css/common.css.php b/themes/pmahomme/css/common.css.php index d5009d12ea..84358775ae 100644 --- a/themes/pmahomme/css/common.css.php +++ b/themes/pmahomme/css/common.css.php @@ -2996,6 +2996,10 @@ body .ui-widget { font-size: 1em; } +body #ui-datepicker-div { + z-index: 9999 !important; +} + .ui-dialog fieldset legend a { color: #235A81; } From e2dc9246159058389de9449f507dea06f749a4c9 Mon Sep 17 00:00:00 2001 From: William Desportes Date: Tue, 24 Dec 2019 22:44:16 +0100 Subject: [PATCH 2/3] Add ChangeLog entry for #14248 Signed-off-by: William Desportes --- ChangeLog | 1 + 1 file changed, 1 insertion(+) diff --git a/ChangeLog b/ChangeLog index e3a6e8907a..145b377ebc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -16,6 +16,7 @@ phpMyAdmin - ChangeLog - issue #15608 Fix DisableIS is broken when with controluser configured (database list broken) - issue #15614 Fix undefined offset on index page for MySQL 5.7.8 (server charset) - issue #15692 Fix JavaScript error when user has not enough privilege to view query statistics. +- issue #14248 Fixed date selection in search menu missing higher Z-index value 4.9.2 (2019-11-21) - issue #14184 Change the cookie name from phpMyAdmin to phpMyAdmin_https for HTTPS, fixes many "Failed to set session cookie" errors From a6de41913911a5b53023511bb752bdc6a0e240f6 Mon Sep 17 00:00:00 2001 From: William Desportes Date: Tue, 24 Dec 2019 22:46:44 +0100 Subject: [PATCH 3/3] Fix #14248 - calendar z-index issue on theme original Signed-off-by: William Desportes --- themes/original/css/common.css.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/themes/original/css/common.css.php b/themes/original/css/common.css.php index b3e61f86c3..4db4618daf 100644 --- a/themes/original/css/common.css.php +++ b/themes/original/css/common.css.php @@ -2436,6 +2436,10 @@ body .ui-widget { font-size: 1em; } +body #ui-datepicker-div { + z-index: 9999 !important; +} + .ui-dialog fieldset legend a { color: #0000FF; }