mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-04-09 01:20:59 +00:00
Revert "Fixing #2520"
This reverts commit ab53b1817f.
Conflicts:
CHANGELOG.txt
docs/releases/1.5.rst
This commit is contained in:
parent
871a5b5d9c
commit
64132728d1
3 changed files with 8 additions and 5 deletions
|
|
@ -17,7 +17,8 @@ Changelog
|
|||
* Fix: Rich text editor is no longer broken in settings (Matt Westcott)
|
||||
* Fix: Link tooltip now shows correct urls for newly inserted document links (Matt Westcott)
|
||||
* Fix: Now page chooser (in a rich text editor) opens up at the link's parent page, rather than at the page itself (Matt Westcott)
|
||||
|
||||
* Fix: Reverted fix for explorer menu scrolling with page content, as it blocked access to menus that exceed screen height
|
||||
|
||||
|
||||
1.5 (31.05.2016)
|
||||
~~~~~~~~~~~~~~~~
|
||||
|
|
|
|||
|
|
@ -20,3 +20,5 @@ Bug fixes
|
|||
* Rich text editor is no longer broken in settings (Matt Westcott)
|
||||
* Link tooltip now shows correct urls for newly inserted document links (Matt Westcott)
|
||||
* Now page chooser (in a rich text editor) opens up at the link's parent page, rather than at the page itself (Matt Westcott)
|
||||
* Reverted fix for explorer menu scrolling with page content, as it blocked access to menus that exceed screen height
|
||||
|
||||
|
|
@ -385,14 +385,14 @@ body.explorer-open {
|
|||
|
||||
.explorer {
|
||||
width: 400px;
|
||||
position: fixed;
|
||||
top: 0 !important;
|
||||
left: $menu-width;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 99%;
|
||||
margin-top: 175px; // same as .nav-main minus 1 pixel for border
|
||||
}
|
||||
|
||||
.dl-menu {
|
||||
position: fixed;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
body.nav-open {
|
||||
|
|
|
|||
Loading…
Reference in a new issue