Merge pull request #38258 from nextcloud/backport/38242/stable25

[stable25] Fix incosistent scrolling in Firefox
This commit is contained in:
Simon L 2023-05-16 08:31:51 +02:00 committed by GitHub
commit 2812b98957
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 2 deletions

View file

@ -166,6 +166,7 @@
.app-files #app-content {
width: calc(100% - 300px);
overflow-anchor: none;
}
.file-drag, .file-drag .files-filestable tbody tr, .file-drag .files-filestable tbody tr:hover {

File diff suppressed because one or more lines are too long

View file

@ -113,6 +113,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 {

View file

@ -166,6 +166,7 @@
.app-files #app-content {
width: calc(100% - 300px);
overflow-anchor: none;
}
.file-drag, .file-drag .files-filestable tbody tr, .file-drag .files-filestable tbody tr:hover {

File diff suppressed because one or more lines are too long