diff options
author | Joas Schilling <coding@schilljs.com> | 2016-08-22 09:44:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-22 09:44:00 +0200 |
commit | 8b117ee0d7a85287b255d36635dc97a15621b0a2 (patch) | |
tree | 90c33f84941a32f5f9caac8e2ce2039538a40d2a /apps/files/css/files.css | |
parent | fc6e8bdf3fc13d23fff316472cb22cfedf82326c (diff) | |
parent | f7deb2c2eb23b7dc2eb7a10c0ef6400f86236d82 (diff) | |
download | nextcloud-server-8b117ee0d7a85287b255d36635dc97a15621b0a2.tar.gz nextcloud-server-8b117ee0d7a85287b255d36635dc97a15621b0a2.zip |
Merge pull request #965 from nextcloud/master-files-render-hidden-files-hidden
Fix hidden files handling
Diffstat (limited to 'apps/files/css/files.css')
-rw-r--r-- | apps/files/css/files.css | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index b1759abfb1d..acd7f4af25d 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -348,6 +348,21 @@ table td.filename .nametext { margin-right: 50px; } +.hide-hidden-files #fileList tr.hidden-file, +.hide-hidden-files #fileList tr.hidden-file.dragging { + display: none; +} + +#fileList tr.animate-opacity { + -webkit-transition:opacity 250ms; + -moz-transition:opacity 250ms; + -o-transition:opacity 250ms; + transition:opacity 250ms; +} +#fileList tr.dragging { + opacity: 0.2; +} + table td.filename .nametext .innernametext { text-overflow: ellipsis; overflow: hidden; |