diff --git a/ChangeLog b/ChangeLog index c591ac1117..e3d27f28d6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -61,6 +61,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 diff --git a/themes/metro/scss/_common.scss b/themes/metro/scss/_common.scss index 03b6775646..c8c756ea91 100644 --- a/themes/metro/scss/_common.scss +++ b/themes/metro/scss/_common.scss @@ -3433,6 +3433,10 @@ body .ui-widget { font-size: 1em; } +body #ui-datepicker-div { + z-index: 9999 !important; +} + .ui-dialog fieldset legend a { color: #235a81; } diff --git a/themes/original/scss/_common.scss b/themes/original/scss/_common.scss index 88b073c052..03e395954c 100644 --- a/themes/original/scss/_common.scss +++ b/themes/original/scss/_common.scss @@ -2782,6 +2782,10 @@ body .ui-widget { font-size: 1em; } +body #ui-datepicker-div { + z-index: 9999 !important; +} + .ui-dialog fieldset legend a { color: #00f; } diff --git a/themes/pmahomme/scss/_common.scss b/themes/pmahomme/scss/_common.scss index 1640fe5e29..7457f754d4 100644 --- a/themes/pmahomme/scss/_common.scss +++ b/themes/pmahomme/scss/_common.scss @@ -3312,6 +3312,10 @@ body .ui-widget { font-size: 1em; } +body #ui-datepicker-div { + z-index: 9999 !important; +} + .ui-dialog fieldset legend a { color: #235a81; }