mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 09:42:09 -04:00
Merge pull request #38258 from nextcloud/backport/38242/stable25
[stable25] Fix incosistent scrolling in Firefox
This commit is contained in:
commit
2812b98957
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