mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-03-07 14:36:13 +01:00
Increase the click area of sidebar and inventory control buttons
This commit is contained in:
parent
986544a653
commit
4199ece189
2 changed files with 7 additions and 6 deletions
|
|
@ -103,10 +103,9 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: end;
|
justify-content: end;
|
||||||
gap: 8px;
|
|
||||||
|
|
||||||
a {
|
a {
|
||||||
width: 15px;
|
width: 20px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -275,8 +274,10 @@
|
||||||
grid-area: controls;
|
grid-area: controls;
|
||||||
align-self: start;
|
align-self: start;
|
||||||
padding-top: 0.3125rem;
|
padding-top: 0.3125rem;
|
||||||
gap: 4px;
|
|
||||||
margin-bottom: -1px;
|
margin-bottom: -1px;
|
||||||
|
a {
|
||||||
|
width: 18px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
> .item-labels {
|
> .item-labels {
|
||||||
align-self: start;
|
align-self: start;
|
||||||
|
|
|
||||||
|
|
@ -109,7 +109,7 @@ Parameters:
|
||||||
{{else if (eq type 'armor')}}
|
{{else if (eq type 'armor')}}
|
||||||
<a class="{{#unless item.system.equipped}}unequipped{{/unless}}" data-action="toggleEquipItem"
|
<a class="{{#unless item.system.equipped}}unequipped{{/unless}}" data-action="toggleEquipItem"
|
||||||
data-tooltip="DAGGERHEART.UI.Tooltip.{{ifThen item.system.equipped 'unequip' 'equip' }}">
|
data-tooltip="DAGGERHEART.UI.Tooltip.{{ifThen item.system.equipped 'unequip' 'equip' }}">
|
||||||
<i class="fa-solid fa-shield"></i>
|
<i class="fa-solid fa-fw fa-shield"></i>
|
||||||
</a>
|
</a>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#if (eq type 'domainCard')}}
|
{{#if (eq type 'domainCard')}}
|
||||||
|
|
@ -125,7 +125,7 @@ Parameters:
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#if (hasProperty item "toChat")}}
|
{{#if (hasProperty item "toChat")}}
|
||||||
<a data-action="toChat" data-tooltip="DAGGERHEART.UI.Tooltip.sendToChat">
|
<a data-action="toChat" data-tooltip="DAGGERHEART.UI.Tooltip.sendToChat">
|
||||||
<i class="fa-regular fa-message"></i>
|
<i class="fa-regular fa-fw fa-message"></i>
|
||||||
</a>
|
</a>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{else}}
|
{{else}}
|
||||||
|
|
@ -138,7 +138,7 @@ Parameters:
|
||||||
{{/unless}}
|
{{/unless}}
|
||||||
{{#unless hideContextMenu}}
|
{{#unless hideContextMenu}}
|
||||||
<a data-action="triggerContextMenu" data-tooltip="DAGGERHEART.UI.Tooltip.moreOptions">
|
<a data-action="triggerContextMenu" data-tooltip="DAGGERHEART.UI.Tooltip.moreOptions">
|
||||||
<i class="fa-solid fa-ellipsis-vertical"></i>
|
<i class="fa-solid fa-fw fa-ellipsis-vertical"></i>
|
||||||
</a>
|
</a>
|
||||||
{{/unless}}
|
{{/unless}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue