summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Barnett <scott.n.barnett@gmail.com>2011-09-26 04:08:28 +1000
committerScott Barnett <scott.n.barnett@gmail.com>2011-09-26 04:08:28 +1000
commit1985bfd9ebe0c2bff77edccc2226921f5816fc63 (patch)
tree95b04b9c789d71f4944e6c692ad590ae4a5d1121
parentfb01a7269304fe38369f01293f8f7fb707061363 (diff)
downloadnextcloud-server-1985bfd9ebe0c2bff77edccc2226921f5816fc63.tar.gz
nextcloud-server-1985bfd9ebe0c2bff77edccc2226921f5816fc63.zip
Fixed uploaded file hover issue.
-rw-r--r--files/js/filelist.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/js/filelist.js b/files/js/filelist.js
index ae9e7977c95..4ea2aadbc34 100644
--- a/files/js/filelist.js
+++ b/files/js/filelist.js
@@ -27,7 +27,7 @@ FileList={
lastModifiedTime=Math.round(lastModified.getTime() / 1000);
modifiedColor=Math.round((Math.round((new Date()).getTime() / 1000)-lastModifiedTime)/60/60/24*14);
html+='<td class="filesize" title="'+humanFileSize(size)+'" style="color:rgb('+sizeColor+','+sizeColor+','+sizeColor+')">'+simpleSize+'</td>';
- html+='<td class="date" title="'+formatDate(lastModified)+'" style="color:rgb('+modifiedColor+','+modifiedColor+','+modifiedColor+')">'+relative_modified_date(lastModified.getTime() / 1000)+'</td>';
+ html+='<td class="date"><span class="" title="'+formatDate(lastModified)+'" style="color:rgb('+modifiedColor+','+modifiedColor+','+modifiedColor+')">'+relative_modified_date(lastModified.getTime() / 1000)+'</td>';
html+='</tr>';
FileList.insertElement(name,'file',$(html));
if(loading){
@@ -48,7 +48,7 @@ FileList={
lastModifiedTime=Math.round(lastModified.getTime() / 1000);
modifiedColor=Math.round((Math.round((new Date()).getTime() / 1000)-lastModifiedTime)/60/60/24*5);
html+='<td class="filesize" title="'+humanFileSize(size)+'" style="color:rgb('+sizeColor+','+sizeColor+','+sizeColor+')">'+simpleSize+'</td>';
- html+='<td class="date" title="'+formatDate(lastModified)+'" style="color:rgb('+modifiedColor+','+modifiedColor+','+modifiedColor+')">'+relative_modified_date(lastModified.getTime() / 1000)+'</td>';
+ html+='<td class="date"><span class="modified" title="'+formatDate(lastModified)+'" style="color:rgb('+modifiedColor+','+modifiedColor+','+modifiedColor+')">'+relative_modified_date(lastModified.getTime() / 1000)+'</span></td>';
html+='</tr>';
FileList.insertElement(name,'dir',$(html));