diff options
author | Joas Schilling <coding@schilljs.com> | 2020-02-24 14:22:03 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2020-02-24 14:22:03 +0100 |
commit | a4fbdb95b13509e96865e77a7ab777ee1239ce70 (patch) | |
tree | 063d953a5063b9d2fb65d81c2701fde7517b057c /apps/files/css | |
parent | 4c69188af0f97c0e4eb9c1337064e80dafa046be (diff) | |
download | nextcloud-server-a4fbdb95b13509e96865e77a7ab777ee1239ce70.tar.gz nextcloud-server-a4fbdb95b13509e96865e77a7ab777ee1239ce70.zip |
Fix hover state color of drag-n-drop with theming and dark mode
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/files.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index 0d8b4824291..91797065769 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -98,7 +98,7 @@ .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: var(--color-primary-light) !important; } .app-files #app-content.dir-drop { @@ -110,7 +110,7 @@ } .app-files #app-content.dir-drop #filestable tbody tr.dropping-to-dir{ - background-color: rgb(179, 230, 255) !important; + background-color: var(--color-primary-light) !important; } /* icons for sidebar */ |