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.

28 lines
1.0 KiB

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