Make WordPress Core

Changeset 35771


Ignore:
Timestamp:
12/04/2015 11:12:57 PM (9 years ago)
Author:
jorbin
Message:

Make comment screen row actions focusable

In [34504], tabbing through row actions on comments that lacked links was broken. This restores the desired behavior and ensures that the row actions can be seen by no-js users.

Second Permanent Committer sign off was by WonderBoyMusic

See #15520
Fixes #34791
Props afercia, azaozz

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/css/list-tables.css

    r35692 r35771  
    878878    color: #ddd;
    879879    font-size: 13px;
    880     visibility: hidden;
    881880    padding: 2px 0 0;
     881    position: relative;
     882    left: -9999em;
    882883}
    883884
     
    892893}
    893894
     895.no-js .row-actions,
    894896tr:hover .row-actions,
    895897.mobile .row-actions,
    896898.row-actions.visible,
    897899div.comment-item:hover .row-actions {
    898     visibility: visible;
     900    position: static;
    899901}
    900902
Note: See TracChangeset for help on using the changeset viewer.