diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-07-28 12:14:55 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-07-28 12:14:55 +0200 |
commit | 43f99a89839d43ef042397b5b7d71f85453c7399 (patch) | |
tree | 3ca3f1fa67a42174905a72dcfb981540d21d431b /files/templates/index.php | |
parent | ece6bd663cc2a03e339019c29d1ea9170d11c24e (diff) | |
download | nextcloud-server-43f99a89839d43ef042397b5b7d71f85453c7399.tar.gz nextcloud-server-43f99a89839d43ef042397b5b7d71f85453c7399.zip |
finished action icons on hover, small style improvements
Diffstat (limited to 'files/templates/index.php')
-rw-r--r-- | files/templates/index.php | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/files/templates/index.php b/files/templates/index.php index ac890257394..c098a4e0632 100644 --- a/files/templates/index.php +++ b/files/templates/index.php @@ -28,14 +28,13 @@ <th id='headerName'> <input type="checkbox" id="select_all" /> <span class='name'><?php echo $l->t( 'Name' ); ?></span> - <span id='selectedActions'> - <a href="" title="Download" class="download"><img alt="Download" src="../core/img/actions/download.svg" /></a> - <!--<a href="" title="" class="share">Share</a>--> - <a href="" title="Delete" class="delete"><img alt="Delete" src="../core/img/actions/delete.svg" /></a> + <span class='selectedActions'> + <a href="" title="Download" class="download"><img alt="Download" src="../core/img/actions/download.svg" /></a> + <!--<a href="" title="" class="share">Share</a>--> </span> </th> <th id='headerSize'><?php echo $l->t( 'Size MB' ); ?></th> - <th id='headerDate'><?php echo $l->t( 'Modified' ); ?></th> + <th id='headerDate'><span id="modified"><?php echo $l->t( 'Modified' ); ?></span><span class='selectedActions'><a href="" title="Delete" class="delete"><img alt="Delete" src="../core/img/actions/delete.svg" /></a></span></th> </tr> </thead> <tbody id="fileList"> |