From: Denilson Sá Maia Date: Wed, 10 May 2023 06:01:51 +0000 (+0200) Subject: Position:fixed for .global-dropzone-overlay X-Git-Tag: v1.14.5~1^2~17^2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F3367%2Fhead;p=thirdparty%2Fpaperless-ngx.git Position:fixed for .global-dropzone-overlay If the user tried dropping a file onto the paperless-ngx UI, but the page itself had scrolled down a bit, the overlay would have scrolled together with the page. This commit makes the overlay fixed to the viewport, independent from the scroll position. This one-word commit was done directly through the GitHub web interface. --- diff --git a/src-ui/src/styles.scss b/src-ui/src/styles.scss index 63fa58028c..c8bf19682c 100644 --- a/src-ui/src/styles.scss +++ b/src-ui/src/styles.scss @@ -468,7 +468,7 @@ table.table { } .global-dropzone-overlay { - position: absolute; + position: fixed; top: 0; right: 0; bottom: 0;