diff options
author | raghunayyar <me@iraghu.com> | 2013-10-02 21:40:34 +0530 |
---|---|---|
committer | raghunayyar <me@iraghu.com> | 2013-10-02 21:40:34 +0530 |
commit | 4a5f3442b5cab84c5cadc65567f15e56b258cc20 (patch) | |
tree | 7981fcecd49dac99016083c48d6a44fd94aa0405 /apps/files | |
parent | 81b4904c78f98d3c42c85463488eaa1765c13c28 (diff) | |
download | nextcloud-server-4a5f3442b5cab84c5cadc65567f15e56b258cc20.tar.gz nextcloud-server-4a5f3442b5cab84c5cadc65567f15e56b258cc20.zip |
Closes Label inside the a tag for not hiding the fileactions.
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/css/files.css | 2 | ||||
-rw-r--r-- | apps/files/templates/part.list.php | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 82b3024231b..0269978374b 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -228,7 +228,7 @@ table td.filename form { font-size:.85em; margin-left:3em; margin-right:3em; } -webkit-transition:background-image 500ms; -moz-transition:background-image 500ms; -o-transition:background-image 500ms; transition:background-image 500ms; } -#fileList tr td.filename .name { +#fileList tr td.filename a.name label { position: absolute; width: 100%; height: 50px; diff --git a/apps/files/templates/part.list.php b/apps/files/templates/part.list.php index ed3e3a2d94a..4e37cfb379f 100644 --- a/apps/files/templates/part.list.php +++ b/apps/files/templates/part.list.php @@ -31,7 +31,9 @@ $totalsize = 0; ?> <?php if($file['type'] == 'dir'): ?> <a class="name" href="<?php p(rtrim($_['baseURL'],'/').'/'.trim($directory,'/').'/'.$name); ?>" title=""> <?php else: ?> - <label class="name" title="" for="select-<?php p($file['fileid']); ?>"></label> + <a class="name"> + <label class="filetext" title="" for="select-<?php p($file['fileid']); ?>"></label> + </a> <?php endif; ?> <span class="nametext"> <?php if($file['type'] == 'dir'):?> |