diff options
author | Simon L <szaimen@e.mail.de> | 2023-05-14 20:27:43 +0200 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2023-05-14 18:37:01 +0000 |
commit | 2730f481800cab472a85b2482b656b4488a3e01b (patch) | |
tree | b78a11edc04abe944622c085c973b383c337d59b /apps/files/css/files.scss | |
parent | d454fe4b8c4bc659e036b7a34a56f0e83bab8a94 (diff) | |
download | nextcloud-server-2730f481800cab472a85b2482b656b4488a3e01b.tar.gz nextcloud-server-2730f481800cab472a85b2482b656b4488a3e01b.zip |
Fix incosistent scrolling in Firefox
Signed-off-by: Simon L <szaimen@e.mail.de>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps/files/css/files.scss')
-rw-r--r-- | apps/files/css/files.scss | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index 6a1a8632ef8..09c0cd97913 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -114,6 +114,8 @@ // force the width to be the full width to not go bigger than the screen // flex will grow for the mobile view if necessary width: calc(100% - 300px); + // disable overflow-anchor which causes undesired behaviour on Firefox + overflow-anchor: none; } .file-drag, .file-drag .files-filestable tbody tr, .file-drag .files-filestable tbody tr:hover { |