diff options
Diffstat (limited to 'apps/files/css/files.css')
-rw-r--r-- | apps/files/css/files.css | 30 |
1 files changed, 23 insertions, 7 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 94eafe27520..ebb44f3070c 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -68,9 +68,23 @@ } .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; +} + +.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 #filestable tbody tr.dropping-to-dir{ + background-color: rgb(179, 230, 255)!important; +} + /* icons for sidebar */ .nav-icon-files { background-image: url('../img/folder.svg'); @@ -113,6 +127,7 @@ } #filestable tbody tr { + transition: background-color 0.3s ease; background-color: #fff; height: 40px; } @@ -125,6 +140,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; } @@ -585,19 +601,19 @@ html.ie8 .column-mtime .selectedActions { #fileList a.action.action-menu { padding-top: 17px; padding-bottom: 17px; - padding-left:14px; - padding-right:0px; + padding-left: 14px; + padding-right: 14px; } #fileList .filesize { - padding-top:0px; - padding-bottom:0px; - padding-left:60px; - padding-right:15px; + padding-top: 0; + padding-bottom: 0; + padding-left: 60px; + padding-right: 15px; } #fileList .popovermenu { - margin-right: -5px; + margin-right: 6px; } .ie8 #fileList .popovermenu { margin-top: -10px; |