You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
1.0 KiB

3 years ago
3 years ago
3 years ago
  1. <urban-filemanager-actions>
  2. <div if={ props.files.length > 0 }>
  3. <div class="buttons">
  4. <span class="filemanager-actions__selected">
  5. <strong>{ props.files.length }</strong> files selected
  6. </span>
  7. <button class="button is-small is-success">
  8. <svg class="icon" aria-hidden="true">
  9. <use xlink:href="/symbol-defs.svg#icon-download"></use>
  10. </svg>
  11. </button>
  12. <button class="button is-small is-danger">
  13. <svg class="icon" aria-hidden="true">
  14. <use xlink:href="/symbol-defs.svg#icon-move"></use>
  15. </svg>
  16. </button>
  17. <button class="button is-small is-danger">
  18. <svg class="icon" aria-hidden="true">
  19. <use xlink:href="/symbol-defs.svg#icon-delete"></use>
  20. </svg>
  21. </button>
  22. </div>
  23. </div>
  24. <script>
  25. export default {
  26. }
  27. </script>
  28. </urban-filemanager-actions>