Make WordPress Core

Changes between Version 1 and Version 2 of Ticket #48814, comment 20


Ignore:
Timestamp:
05/19/2020 08:40:42 PM (6 years ago)
Author:
johnjamesjacoby
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #48814, comment 20

    v1 v2  
    99`table-cell` and `width: auto !important` will not allow for the targeted `td`s to occupy the full-width of the parent element.
    1010
    11 It is also why this rule...
     11It is also why the following rule...
    1212
    1313{{{
     
    1919----
    2020
    21 In this rule, WordPress avoids applying styling to `tr` elements using `:not()` - like:
     21In the following rule, WordPress avoids applying styling to certain `tr` elements (including the dynamic `.inline-edit-row` one) using `:not()` - like:
    2222
    2323{{{
     
    2525}}}
    2626
    27 I believe the non-breaking change here would have been to leave the `display: block;` it and also avoid styling `unspam` columns, like:
     27I believe the non-breaking change here would have been to leave the `display: block;` alone, and then to add the `unspam` and `untrash` classes to the group of row classes not to target, like:
    2828
    2929{{{