From 433cea30c3ffa7b314ad1f857a7ed2cf48f241e8 Mon Sep 17 00:00:00 2001 From: Vincent Chan Date: Mon, 13 Jun 2016 23:00:56 +0200 Subject: adds visual indication for file drag and drop --- apps/files/css/files.css | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'apps/files/css/files.css') diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 94eafe27520..c462e27ff14 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -68,9 +68,15 @@ } .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; + background-color: rgb(179, 230, 255); +} + /* icons for sidebar */ .nav-icon-files { background-image: url('../img/folder.svg'); @@ -113,6 +119,7 @@ } #filestable tbody tr { + transition: background-color 0.3s ease; background-color: #fff; height: 40px; } @@ -125,6 +132,7 @@ #filestable tbody tr.selected, #filestable tbody tr.searchresult, table tr.mouseOver td { + transition: background-color 0.3s ease; background-color: #f8f8f8; } tbody a { color:#000; } -- cgit v1.2.3