#26145 closed defect (bug) (fixed)
Row actions are not keyboard accessible
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 3.8 | Priority: | normal |
Severity: | normal | Version: | 3.8 |
Component: | Accessibility | Keywords: | has-patch commit |
Focuses: | ui | Cc: |
Attachments (2)
Change History (9)
#2
follow-up:
↓ 3
@
11 years ago
How are you testing this?
From what I can see, under both a clean 3.7 and trunk, tabbing to the fields does not work on the plugins page, or the Posts page.
Under 3.7 the Plugins links are forced to be displayed (but Posts are not) and this patch matches that style.. but it doesn't appear to actually make it accessible the same way that [25595] was trying to do
#3
in reply to:
↑ 2
@
11 years ago
Replying to dd32:
How are you testing this?
- Go to the Posts screen.
- Click the checkbox on the left of any post and press Tab.
In 3.7, this will reveal the action links for that post. In trunk, nothing happens.
The JS introduced in [25595] still adds the .visible
class, but the proper styling is missing.
.row-actions-visible
class no longer exists in core since [25592], but the CSS part of that changeset was reverted during the merge in [26072].
#4
@
11 years ago
Ahah, got it now.
With the patch the Posts screen now works as explained (Row actions show when tab from the checkbox, but hidden otherwise), however the plugins page always shows the actions, can we make it work like the Posts page too?
26145.patch re-introduces [25592].
26145.2.patch also removes lines 132 and 133 in
colors-fresh.css
, which seem redundant.