diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-07-24 12:08:31 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-07-24 12:08:31 +0200 |
commit | a9e554beeccc479a0718f5a0c90690b3a5840709 (patch) | |
tree | 2f70c65e5136c74b294c59ce75e3b86cf4ed5625 | |
parent | dfe6c1b7e2a179a0c7aee0f43a722bf1e3e3cf3d (diff) | |
download | nextcloud-server-a9e554beeccc479a0718f5a0c90690b3a5840709.tar.gz nextcloud-server-a9e554beeccc479a0718f5a0c90690b3a5840709.zip |
Fix header controls sticky positioning
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
-rw-r--r-- | apps/files/css/files.scss | 5 | ||||
-rw-r--r-- | core/css/apps.scss | 1 | ||||
-rw-r--r-- | core/css/styles.scss | 2 |
3 files changed, 3 insertions, 5 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index 81a00c3c54c..47120ede7a0 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -63,12 +63,11 @@ .app-files #app-content { transition: background-color 0.3s ease; - overflow-x: hidden; } .file-drag, .file-drag #filestable tbody tr, .file-drag #filestable tbody tr:hover { transition: background-color 0.3s ease!important; - background-color: rgb(179, 230, 255)!important; + background-color: rgb(179, 230, 255) !important; } .app-files #app-content.dir-drop { @@ -91,7 +90,7 @@ @include icon-color('recent', 'files', $color-black); } .nav-icon-favorites { - @include icon-color('star-dark', 'files', $color-black, 2, true); + @include icon-color('star-dark', 'actions', $color-black, 2, true); } .nav-icon-sharingin, .nav-icon-sharingout, diff --git a/core/css/apps.scss b/core/css/apps.scss index f0c168eee71..7f033026b70 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -606,7 +606,6 @@ kbd { position: relative; min-height: 100%; flex-basis: 100vw; - overflow: auto; /* margin if navigation element is here */ #app-navigation + & { margin-left: $navigation-width; diff --git a/core/css/styles.scss b/core/css/styles.scss index 3ca0d804443..ee524d336f5 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -175,7 +175,7 @@ body { -ms-user-select: none; user-select: none; display: flex; - top: 0; + top: $header-height; } /* position controls for apps with app-navigation */ |