Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #52151, comment 6


Ignore:
Timestamp:
08/13/2021 07:31:22 AM (4 years ago)
Author:
costdev
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #52151, comment 6

    initial v1  
    11From what I can see, there are four options:
    22
    3 1. Add a `width` to the title (such as `15/20%`) - This will result in ''other'' columns being wrapped.
    4 2. Add `overflow: hidden`, `text-overflow: ellipsis`, and `width: XXXpx` to `.fixed .column-title`, truncating the title to `Visible part of titl...`, which will also need a `title` attribute added to the link so that users can hover over to see the full title.
     31. Add a `width` to the title (such as 15/20%) - This will result in ''other'' columns being wrapped.
     42. Add `overflow: hidden`, `text-overflow: ellipsis`, and `width: XXXpx` to `.fixed .column-title`, truncating the title to **Visible part of titl...**, which will also need a `title` attribute added to the link so that users can hover over to see the full title.
    553. Remove `table-layout: fixed` from `.wp-list-table` - This will reduce rendering performance for large tables, in addition to adding a horizontal scrollbar when there are a larger number of columns.
    6 4. Accept that issue is caused by the number of columns and manage the column count using `Screen Options`.
     64. Accept that issue is caused by the number of columns and manage the column count using **Screen Options**.
    77
    8 Short of additional ideas, I would imagine that the availability of `Screen Options` allows most users to resolve this issue to their satisfaction, and those with specific needs have one of the other options above.
     8Short of additional ideas, I would imagine that the availability of **Screen Options** allows most users to resolve this issue to their satisfaction, and those with specific needs have one of the other options above.
    99
    10 However, if the core aspect of this issue is that `title` in particular should ''never'' be wrapped and this is a case of tidying up, I think the first option above could be a desirable solution.
     10However, if the core aspect of this issue is that title in particular should ''never'' be wrapped and this is a case of tidying up, I think the first option above could be a desirable solution.