Skip to content

Commit

Permalink
Ensure the 'add child page' button displays when focused (#5274, #5382)
Browse files Browse the repository at this point in the history
  • Loading branch information
helenb authored and thibaudcolas committed Jun 17, 2019
1 parent 4b4db7d commit 98d3ef4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ Changelog
* Fix: Restore custom "Date" icon for scheduled publishing panel in Edit page’s Settings tab (Helen Chapman)
* Fix: Added missing form media to user edit form template (Matt Westcott)
* Fix: Add a label to the modals’ “close” button for screen reader users (Helen Chapman, Katie Locke)
* Fix: Ensure the 'add child page' button displays when focused (Helen Chapman, Katie Locke)


2.5.1 (07.05.2019)
Expand Down
7 changes: 6 additions & 1 deletion client/scss/components/_listing.scss
Original file line number Diff line number Diff line change
Expand Up @@ -279,9 +279,14 @@ ul.listing {
font-size: 1.5rem;
}

&:hover {
&:hover,
&:focus {
color: $color-teal;
}

&:focus {
opacity: 1; //opacity is already changed on hover on the parent tr
}
}

&.small .children a:before {
Expand Down
1 change: 1 addition & 0 deletions docs/releases/2.6.rst
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ Bug fixes
* Restore custom "Date" icon for scheduled publishing panel in Edit page’s Settings tab (Helen Chapman)
* Added missing form media to user edit form template (Matt Westcott)
* Added a label to the modals’ “close” button for screen reader users (Helen Chapman, Katie Locke)
* Ensured the 'add child page' button displays when focused (Helen Chapman, Katie Locke)


Upgrade considerations
Expand Down

0 comments on commit 98d3ef4

Please sign in to comment.