mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
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>
This commit is contained in:
parent
dee180409b
commit
38d1d5796e
5 changed files with 6 additions and 2 deletions
|
|
@ -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
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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
Loading…
Reference in a new issue