]> git.immae.eu Git - perso/Immae/Projets/Nodejs/Surfer.git/blobdiff - frontend/index.html
Only show item action buttons on hover
[perso/Immae/Projets/Nodejs/Surfer.git] / frontend / index.html
index 4c16ed5b503699d49b9f6042516338517e27ba6d..c0a6a4e6a623fc530dc7f491e19f8c64571039d6 100644 (file)
                             <th>Name</th>
                             <th>Size</th>
                             <th>Modified</th>
-                            <th style="text-align: right;">Action</th>
+                            <th>&nbsp;</th>
                         </tr>
                     </thead>
                     <tbody>
                             <th>{{ entry.filePath }}</th>
                             <th>{{ entry.size | prettyFileSize }}</th>
                             <th><span v-my-tooltip="foobar" data-toggle="tooltip" title="{{ entry.mtime }}">{{ entry.mtime | prettyDate }}</span></th>
-                            <th style="text-align: right;"><button class="btn btn-sm btn-danger" v-on:click.stop="delAsk(entry)"><i class="fa fa-trash"></i></button></th>
+                            <th style="text-align: right;">
+                                <span class="entry-toolbar">
+                                    <!-- <button class="btn btn-sm btn-default" v-on:click.stop="renameAsk(entry)" title="Rename"><i class="fa fa-pencil"></i></button> -->
+                                    <button class="btn btn-sm btn-danger" v-on:click.stop="delAsk(entry)" title="Delete"><i class="fa fa-trash"></i></button>
+                                </span>
+                            </th>
                         </tr>
                     </tbody>
                 </table>