forked from GitHub-Mirrors/foundry-sw5e
Beginning of global styling; Full Sidebar restyle
This commit is contained in:
parent
a8c2881a7b
commit
f7d7580b3a
53 changed files with 6671 additions and 1811 deletions
33
templates/actors/newActor/item.hbs
Normal file
33
templates/actors/newActor/item.hbs
Normal file
|
@ -0,0 +1,33 @@
|
|||
<li class="item group-grid-fav-items" data-item-id="{{item._id}}">
|
||||
<div class="item-name rollable">
|
||||
<div class="item-image" style="background-image: url({{item.img}})"></div>
|
||||
<h4>{{item.name}}</h4>
|
||||
</div>
|
||||
|
||||
<div class="item-detail item-uses">
|
||||
{{#if item.data.uses.max }}
|
||||
{{item.data.uses.value}} / {{item.data.uses.max}}
|
||||
{{/if}}
|
||||
</div>
|
||||
|
||||
|
||||
<div class="item-detail item-count">
|
||||
{{#if item.data.quantity}}
|
||||
{{item.data.quantity}}
|
||||
{{/if}}
|
||||
</div>
|
||||
|
||||
|
||||
<div class="item-detail item-comps">
|
||||
{{#if item.powerComps}}
|
||||
{{item.powerComps}}
|
||||
{{#if item.powerCon}}<i class='fas fa-copyright'></i>{{/if}}
|
||||
{{#if item.powerRit}}<i class='fas fa-registered'></i>{{/if}}
|
||||
{{/if}}
|
||||
</div>
|
||||
|
||||
<div class="item-detail item-controls">
|
||||
<a class="item-control item-edit" title="Edit Item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control item-fav" title="Remove"><i class="fas fa-sign-out-alt"></i></a>
|
||||
</div>
|
||||
</li>
|
Loading…
Add table
Add a link
Reference in a new issue