mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-04-26 01:24:49 +00:00
Fix page chooser parent link on row hover [#3080]
This commit is contained in:
parent
8527e9710c
commit
e0e957f92a
3 changed files with 6 additions and 0 deletions
|
|
@ -10,6 +10,7 @@ Changelog
|
|||
* Fix: `AbstractForm` now respects custom `get_template` methods on the page model (Gagaro)
|
||||
* Fix: Use specific page model for the parent page in the explore index (Gagaro)
|
||||
* Fix: Remove responsive styles in embed when there is no ratio available (Gagaro)
|
||||
* Fix: Parent page link in page search modal no longer disappears on hover (Dan Braghis)
|
||||
|
||||
|
||||
1.7 (xx.xx.xxxx) - IN DEVELOPMENT
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@ Bug fixes
|
|||
* ``AbstractForm`` now respects custom ``get_template`` methods on the page model (Gagaro)
|
||||
* Use specific page model for the parent page in the explore index (Gagaro)
|
||||
* Remove responsive styles in embed when there is no ratio available (Gagaro)
|
||||
* Parent page link in page search modal no longer disappears on hover (Dan Braghis)
|
||||
|
||||
|
||||
Upgrade considerations
|
||||
|
|
|
|||
|
|
@ -117,6 +117,10 @@ ul.listing {
|
|||
color: $color-white;
|
||||
}
|
||||
|
||||
.parent a {
|
||||
color: $color-link-hover;
|
||||
}
|
||||
|
||||
.status-tag {
|
||||
border-color: $color-white;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue