diff --git a/ChangeLog b/ChangeLog index 4bcef38d1e..7993082def 100644 --- a/ChangeLog +++ b/ChangeLog @@ -69,6 +69,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 97d2c913b5..3074177be2 100644 --- a/themes/metro/scss/_common.scss +++ b/themes/metro/scss/_common.scss @@ -3123,6 +3123,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 4e6484547f..ab0e460284 100644 --- a/themes/original/scss/_common.scss +++ b/themes/original/scss/_common.scss @@ -2594,6 +2594,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 7e8b1d335a..3f476fdb5a 100644 --- a/themes/pmahomme/scss/_common.scss +++ b/themes/pmahomme/scss/_common.scss @@ -3033,6 +3033,10 @@ body .ui-widget { font-size: 1em; } +body #ui-datepicker-div { + z-index: 9999 !important; +} + .ui-dialog fieldset legend a { color: #235a81; }