From a9da66e853481d8cda62b5cd3d2e73a0157ef78a Mon Sep 17 00:00:00 2001 From: Jeremy Felt Date: Sat, 11 Jul 2015 22:52:01 +0000 Subject: [PATCH] Restrict textarea fields in network setup to a max width of 100%. This avoids the content overrunning the screen on mobile devices. See #32846. git-svn-id: https://develop.svn.wordpress.org/trunk@33171 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/css/forms.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/wp-admin/css/forms.css b/src/wp-admin/css/forms.css index 26304353e3..c86e240af9 100644 --- a/src/wp-admin/css/forms.css +++ b/src/wp-admin/css/forms.css @@ -869,6 +869,10 @@ table.form-table td .updated p { 21.0 - Network Admin ------------------------------------------------------------------------------*/ +.setup-php textarea { + max-width: 100%; +} + .form-field #site-address { max-width: 25em; }