Switching explorer from position absolute to position fixed.
I did it in a pure CSS way but it would be good to be able to modify jquery.dlmenu.js line 213 to avoid it adding automatically a CSS property top on the element.
pull/2509/merge
Vincent Audebert 2016-04-27 18:31:43 +12:00 zatwierdzone przez Matt Westcott
rodzic dd19ca4051
commit ab53b1817f
3 zmienionych plików z 6 dodań i 4 usunięć

Wyświetl plik

@ -34,6 +34,7 @@ Changelog
* Fix: All admin forms that could potentially include file upload fields now specify `multipart/form-data` where appropriate (Tim Heap)
* Fix: REM units in Wagtailuserbar caused incorrect spacing (Vincent Audebert)
* Fix: Now user can upload images / documents only into permitted collection from choosers
* Fix: Explorer menu no longer scrolls with page content (Vincent Audebert)
1.4.4 (xx.xx.2016)

Wyświetl plik

@ -63,6 +63,7 @@ Bug fixes
* All admin forms that could potentially include file upload fields now specify ``multipart/form-data`` where appropriate (Tim Heap)
* REM units in Wagtailuserbar caused incorrect spacing (Vincent Audebert)
* Now user can upload images / documents only into permitted collection from choosers
* Explorer menu no longer scrolls with page content (Vincent Audebert)
Upgrade considerations

Wyświetl plik

@ -385,14 +385,14 @@ body.explorer-open {
.explorer {
width: 400px;
position: absolute;
top: 0;
left: 99%;
position: fixed;
top: 0 !important;
left: $menu-width;
margin-top: 175px; // same as .nav-main minus 1 pixel for border
}
.dl-menu {
position: absolute;
position: fixed;
}
body.nav-open {