Make background tab glassy in character sheet (#1868)
Some checks failed
Project CI / build (24.x) (push) Has been cancelled

* Make fieldsets glassy in character sheet

* Remove glassy from character features tab
This commit is contained in:
Carlos Fernandez 2026-05-11 16:30:39 -04:00 committed by GitHub
parent abd7824c96
commit 24813e7e4f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 32 additions and 28 deletions

View file

@ -2,26 +2,25 @@
data-group='{{tabs.features.group}}'>
<div class="features-sections">
{{#each document.system.sheetLists as |category|}}
{{#if (eq category.type 'feature' )}}
{{> 'daggerheart.inventory-items'
title=category.title
type='feature'
actorType='character'
collection=category.values
canCreate=@root.editable
showActions=@root.editable
}}
{{else if category.values}}
{{> 'daggerheart.inventory-items'
title=category.title
type='feature'
actorType='character'
collection=category.values
canCreate=false
showActions=@root.editable
}}
{{/if}}
{{#if (eq category.type 'feature' )}}
{{> 'daggerheart.inventory-items'
title=category.title
type='feature'
actorType='character'
collection=category.values
canCreate=@root.editable
showActions=@root.editable
}}
{{else if category.values}}
{{> 'daggerheart.inventory-items'
title=category.title
type='feature'
actorType='character'
collection=category.values
canCreate=false
showActions=@root.editable
}}
{{/if}}
{{/each}}
</div>
</section>