0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-12-01 11:41:20 +01:00

Ensure the 'add child page' button displays when focused (#5274, #5382)

This commit is contained in:
Helen Chapman 2019-06-17 18:11:04 +01:00 committed by Thibaud Colas
parent 4b4db7d771
commit 98d3ef4743
3 changed files with 8 additions and 1 deletions

View File

@ -47,6 +47,7 @@ Changelog
* Fix: Restore custom "Date" icon for scheduled publishing panel in Edit pages 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)

View File

@ -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 {

View File

@ -61,6 +61,7 @@ Bug fixes
* Restore custom "Date" icon for scheduled publishing panel in Edit pages 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