Browse Source

Closes Label inside the a tag for not hiding the fileactions.

remotes/origin/stable6
raghunayyar 12 years ago
parent
commit
4a5f3442b5
  1. 2
      apps/files/css/files.css
  2. 4
      apps/files/templates/part.list.php

2
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;

4
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'):?>

Loading…
Cancel
Save