diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2017-11-08 19:03:32 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2017-11-08 19:03:32 +0100 |
commit | 584272962a0971d1025c1577f578985d0de7ec83 (patch) | |
tree | 8c7b653af95ce6f8dd55c63927504a5fc147a17e /apps/files/css | |
parent | b001060556e93ba4c1e1f7aff48390a7612e0b56 (diff) | |
download | nextcloud-server-584272962a0971d1025c1577f578985d0de7ec83.tar.gz nextcloud-server-584272962a0971d1025c1577f578985d0de7ec83.zip |
Improve drag & drop and fix some background issue if d&d on narrow windows
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/files.scss | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index c7d7ba45d91..1be3c9216f0 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -66,12 +66,16 @@ background-color: rgb(179, 230, 255)!important; } -.app-files #app-content.dir-drop, .file-drag #filestable tbody tr, .file-drag #filestable tbody tr:hover{ - background-color: rgba(0, 0, 0, 0)!important; +.app-files #app-content.dir-drop { + background-color: $color-main-background !important; +} + +.file-drag #filestable tbody tr, .file-drag #filestable tbody tr:hover{ + background-color: transparent !important; } .app-files #app-content.dir-drop #filestable tbody tr.dropping-to-dir{ - background-color: rgb(179, 230, 255)!important; + background-color: rgb(179, 230, 255) !important; } /* icons for sidebar */ |