Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

2.0.4

Compare
Choose a tag to compare
@LukasHirt LukasHirt released this 15 Dec 10:07
· 2649 commits to master since this release

Changelog for [2.0.4] (2020-12-15)

Summary

  • Bugfix - Positioning of dropzone: #1052

Details

  • Bugfix - Positioning of dropzone: #1052

    Switch oc-dropzone positioning from fixed to absolute, fixed always orientates by the
    viewport which means it always covers the entire screen. This is something we can't know and the
    decision should be left to the consuming app.

    Instead we use position absolute to just cover the next parent which ist positioned relative to
    the viewport. In situations where the body is higher or wider than the viewport fixed works
    better because absolute won't cover the scrollable parts of the content.

    Since oc apps always do scrolling on their own this is no problem

    owncloud/ocis#1052