All user data for FoundryVTT. Includes worlds, systems, modules, and any asset in the "foundryuserdata" directory. Does NOT include the FoundryVTT installation itself.
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.

60 lines
2.7 KiB

1 year ago
  1. <div id="hotbar" class="flexrow" data-tooltip-direction="UP">
  2. <div id="hotbar-directory-controls" class="bar-controls flexcol">
  3. <a id="bar-toggle">
  4. <i class="fas fa-caret-down"></i>
  5. </a>
  6. <a id="macro-directory">
  7. <i class="fas fa-folder"></i>
  8. </a>
  9. </div>
  10. <nav id="action-bar" class="action-bar flexrow {{barClass}}" aria-label="{{localize 'MACRO.NavLabel'}}">
  11. <ol id="macro-list" class="flexrow macro-list" data-page="{{page}}">
  12. {{#each macros}}
  13. <li class="macro {{this.cssClass}}" data-slot="{{this.slot}}"
  14. {{#if this.macro}} data-macro-id="{{this.macro.id}}" data-tooltip="{{this.tooltip}}"{{/if}}>
  15. <span class="macro-key">{{this.key}}</span>
  16. {{#if this.icon}}
  17. <img class="macro-icon" src="{{this.icon}}" alt="{{this.tooltip}}" />
  18. {{/if}}
  19. </li>
  20. {{/each}}
  21. </ol>
  22. </nav>
  23. <div id="hotbar-page-controls" class="bar-controls flexcol" data-tooltip-direction="UP">
  24. {{#if showArrows}}
  25. <a class="page-control" data-action="page-up" data-tooltip="MACRO.PageUp" alt="{{localize 'MACRO.PageUp'}}">
  26. <i class="fas fa-angle-up"></i>
  27. </a>
  28. {{/if}}
  29. <span class="page-number">{{page}}</span>
  30. {{#if showArrows}}
  31. <a class="page-control" data-action="page-down" data-tooltip="MACRO.PageDown" alt="{{localize 'MACRO.PageDown'}}">
  32. <i class="fas fa-angle-down"></i>
  33. </a>
  34. {{/if}}
  35. </div>
  36. <div id="hotbar-page" class="hotbar-page flexcol {{pageClass}}">
  37. {{#each macrolist}}
  38. <div class="hotbar-page-row flexrow{{#if this.selected}} selected{{/if}}" data-page="{{page}}">
  39. <div data-tooltip="MonksHotbarExpansion.clear-row" class="bar-controls clear-row flexcol">
  40. <i class="fas fa-trash"></i>
  41. </div>
  42. <nav class="action-bar flexrow">
  43. <ol class="flexrow macro-list" data-page="{{page}}">
  44. {{#each macros}}
  45. <li class="macro {{this.cssClass}}" data-slot="{{this.slot}}"
  46. {{#if this.macro}} data-macro-id="{{this.macro.id}}" data-tooltip="{{this.tooltip}}"{{/if}}>
  47. <span class="macro-key">{{this.key}}</span>
  48. {{#if this.icon}}
  49. <img class="macro-icon" src="{{this.icon}}" alt="{{this.tooltip}}" />
  50. {{/if}}
  51. </li>
  52. {{/each}}
  53. </ol>
  54. </nav>
  55. <div class="bar-controls flexcol">
  56. <span class="page-number">{{page}}</span>
  57. </div>
  58. </div>
  59. {{/each}}
  60. </div>
  61. </div>