kopia lustrzana https://github.com/wagtail/wagtail
Fixing #2520
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
rodzic
dd19ca4051
commit
ab53b1817f
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 {
|
||||
|
|
Ładowanie…
Reference in New Issue