From 5364a29b5f6b8236a3a51ef6824ef8bc0d68a1ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denilson=20S=C3=A1=20Maia?= Date: Wed, 10 May 2023 08:01:51 +0200 Subject: [PATCH] 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. --- src-ui/src/styles.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-ui/src/styles.scss b/src-ui/src/styles.scss index 63fa58028..c8bf19682 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;