diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-12-05 10:32:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-05 10:32:53 +0100 |
commit | 90401e573e44a4a44d4ce1dc47b534cfb4a9ff1f (patch) | |
tree | 683df0088711f2d64c557c9f1ff158da1fc989ed /apps | |
parent | 04c2b5fcb12a8553913381b05204e8c4b55e71b5 (diff) | |
parent | 8261e74725a21381fb223fca70f7c8d5724f6410 (diff) | |
download | nextcloud-server-90401e573e44a4a44d4ce1dc47b534cfb4a9ff1f.tar.gz nextcloud-server-90401e573e44a4a44d4ce1dc47b534cfb4a9ff1f.zip |
Merge pull request #17989 from Noodlesalat/fix-padding-top-filelist
Remove whitespace above file list ref #17891
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/css/files.scss | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index 915c037431d..0ec6cd4f52d 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -1,6 +1,10 @@ -/* Copyright (c) 2011, Jan-Christoph Borchardt, http://jancborchardt.net - This file is licensed under the Affero General Public License version 3 or later. - See the COPYING-README file. */ +/** + * Copyright (c) 2011, Jan-Christoph Borchardt, http://jancborchardt.net + * @copyright Copyright (c) 2019, Fabian Dreßler <nudelsalat@clouz.de> + * + * This file is licensed under the Affero General Public License version 3 or later. + * See the COPYING-README file. + */ /* SETTINGS */ #files-setting-showhidden { @@ -74,8 +78,8 @@ position: -webkit-sticky; position: sticky; // header + breadcrumbs - top: $header-height; - padding-top: 40px; + // 44px coming from #controls in core/css/styles.scss + top: $header-height + 44px; // under breadcrumbs, over file list z-index: 55; display: block; |