#32846 closed defect (bug) (fixed)
Content overruns on mobile devices
Reported by: | ubernaut | Owned by: | jeremyfelt |
---|---|---|---|
Milestone: | 4.3 | Priority: | normal |
Severity: | normal | Version: | 3.0 |
Component: | Networks and Sites | Keywords: | |
Focuses: | ui, administration, multisite | Cc: |
Description (last modified by )
in reference to the following make post on UX flows for multisite admin screens:
https://make.wordpress.org/flow/tag/multisite/
a number of content overruns have been identified listing them here:
a number of urls overrun width in various install/update screens on a number of devices (not sure if we care about that or not).
nexus 6 https://make.wordpress.org/flow/2015/06/09/network-admin-nexus-6/
description area of the plugin screens
iphone 5 https://make.wordpress.org/flow/2015/06/02/multisite-video-flows-iphone-5s/
search fields on network admin dashboard both overrun width, a number of fields overrun width in the add user screen, plugin screen and theme screen both overrun in the description areas, the last video shows the users screen which has a lot of problems overlaps collisions etc.
Attachments (14)
Change History (31)
This ticket was mentioned in Slack in #core-multisite by ubernaut. View the logs.
9 years ago
This ticket was mentioned in Slack in #core-multisite by ubernaut. View the logs.
9 years ago
#3
@
9 years ago
- Focuses ui administration added
- Keywords needs-patch good-first-bug added
- Milestone changed from Awaiting Review to 4.3
This ticket was mentioned in Slack in #core by jeremyfelt. View the logs.
9 years ago
#6
@
9 years ago
#7
@
9 years ago
- Keywords good-first-bug removed
- Owner set to jeremyfelt
- Status changed from new to assigned
- Version changed from 4.2.2 to 3.0
These screens need help on iPhone 6:
- Add existing user in network admin.
- Add new user in site admin.
- Something on the network admin themes page by just a few pixels.
- Something on the site admin themes page by just a few pixels.
#9
@
9 years ago
It's hard to track down the reasoning for .theme-php .wrap h1 { width: 100%; }
in mobile views now as it was originally introduced in txh-38:844556 before the final merges of the new theme experience to core in 3.8. It seems like there may have been a time when the search input was handled slightly different.
In the network admin, there is no search input next to the title, only Add New. This is all wrapped in the same h1
, which is floated left and does not have any conflicts if the width is removed.
In a site admin on the network, there is no Add New button, only an indicator of number of themes. This is also wrapped in the same h1
and has no trouble if width is removed.
In a single site admin, both Add New and a search input are provided, though all are part of the same h1
and removing width causes no trouble.
It seems like we could also remove float: left;
, but the smaller change the better. :)
#11
@
9 years ago
The text areas in the network setup screen (wp-admin/network/setup.php
) are set to 100 columns for all views and have no width restriction. Once things get down to about 1024px, the content overruns the screen. Normal use of the screen is likely very uncommon on mobile, but we can fix it by applying a max width of 100% to the textarea inputs on this screen.
I've included iPad screenshots, but the same issue applies to all smaller screens as well.
#13
@
9 years ago
The search users and search sites input fields bleed outside of the Right Now network dashboard widget on the iPhone 5. Larger devices are fine.
#15
@
9 years ago
- Keywords needs-patch removed
- Resolution set to fixed
- Status changed from assigned to closed
Going to close this as fixed for 4.3. Beyond the flows posted by @ubernaut, I've been through all of the network admin screens with an iPhone 6 and iPhone 5 and am not seeing anything else at the moment.
Recap:
Moving this to 4.3 as part of the effort to clean up Admin UI. This should be a smaller change affecting the width of an input on mobile devices.