Allow columns to scroll horizontally
I often find that I set up a great admin interface using your plugin, but it does not scale to lower resolutions. Because all columns are percentage-based and the entire table is constricted to the width of the browser, layouts with many columns can quickly become too crowded.
One way to ensure a more consistent experience across all resolutions would be an option to set the table width in pixels and allow it to scroll horizontally. For example, my client may be working at a desktop resolution of 1024×768, but if I could set the table width to 1600px, I could ensure that they have room to see many more columns than the current configuration allows.
I did some digging in the inspector, and I think it would only require some minimal CSS:
.wp-list-table {
width: 1600px;// allow the user to define this value
overflow-x: scroll;// make this toggle available for each post type?
}
You must be logged in to reply to this topic.