diff --git a/styles/less/ui/combat-sidebar/token-actions.less b/styles/less/ui/combat-sidebar/token-actions.less index 072381dd..6fc84d29 100644 --- a/styles/less/ui/combat-sidebar/token-actions.less +++ b/styles/less/ui/combat-sidebar/token-actions.less @@ -2,7 +2,6 @@ .token-actions { align-self: stretch; display: flex; - align-items: top; justify-content: center; gap: 16px; @@ -26,6 +25,16 @@ opacity: 0.5; background: transparent; } + + &.inactive { + background: var(--color-warm-2); + color: var(--color-light-1); + cursor: default; + + &:hover { + filter: none; + } + } } } diff --git a/templates/ui/combatTracker/combatTrackerSection.hbs b/templates/ui/combatTracker/combatTrackerSection.hbs index 004d130c..cf3ca422 100644 --- a/templates/ui/combatTracker/combatTrackerSection.hbs +++ b/templates/ui/combatTracker/combatTrackerSection.hbs @@ -31,16 +31,17 @@ {{#if ../combat.round}} -
- {{#if isOwner}} - {{#if (and (not isNPC) ../actionTokens.enabled)}} -
- {{#times ../actionTokens.tokens}} - - {{/times}} -
- {{/if}} +
+ {{#if (and (not isNPC) ../actionTokens.enabled)}} +
+ {{#times ../actionTokens.tokens}} + + {{/times}} +
{{/if}}
{{/if}}