From 9dc63e7cab5b5bfdc809071393968cf4d95dfb5e Mon Sep 17 00:00:00 2001 From: Andrea Fercia Date: Mon, 23 Oct 2017 17:53:36 +0000 Subject: [PATCH] Customize: Make sure the FTP credentials modal is visible. The customizer and the theme installer use `visibility: hidden` on the body when they open full-overlays screens. The FTP credentials modal needs a visibility property set back to `visible` to be visible over those overlays. Props purnendu. Fixes #42205. git-svn-id: https://develop.svn.wordpress.org/trunk@41972 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/css/forms.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wp-admin/css/forms.css b/src/wp-admin/css/forms.css index 1292db2cdb..dac5fddf65 100644 --- a/src/wp-admin/css/forms.css +++ b/src/wp-admin/css/forms.css @@ -952,6 +952,8 @@ table.form-table td .updated p { .request-filesystem-credentials-dialog { display: none; + /* The customizer uses visibility: hidden on the body for full-overlays. */ + visibility: visible; } .request-filesystem-credentials-dialog .notification-dialog {