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
This commit is contained in:
parent
1546ae8963
commit
9dc63e7cab
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue