mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-03-07 14:36:13 +01:00
Merge branch 'main' into feature/165-action-save
This commit is contained in:
commit
7b4cbd3484
4 changed files with 5 additions and 1 deletions
|
|
@ -5,7 +5,7 @@
|
||||||
- [Developer Setup](#developer-setup)
|
- [Developer Setup](#developer-setup)
|
||||||
- [Contribution Info](#contributing)
|
- [Contribution Info](#contributing)
|
||||||
|
|
||||||
## Overivew
|
## Overview
|
||||||
This is a community repo for a Foundry VTT implementation of Daggerheart. It is not associated with Critical Role or Darrington Press.
|
This is a community repo for a Foundry VTT implementation of Daggerheart. It is not associated with Critical Role or Darrington Press.
|
||||||
|
|
||||||
## User Install
|
## User Install
|
||||||
|
|
|
||||||
|
|
@ -4702,6 +4702,7 @@ div.daggerheart.views.multiclass {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
transform: translateY(0);
|
transform: translateY(0);
|
||||||
transition: opacity 0.3s ease-out, transform 0.3s ease-out;
|
transition: opacity 0.3s ease-out, transform 0.3s ease-out;
|
||||||
|
grid-column: 1/-1;
|
||||||
}
|
}
|
||||||
.application.sheet.dh-style .item-description.invisible {
|
.application.sheet.dh-style .item-description.invisible {
|
||||||
height: 0;
|
height: 0;
|
||||||
|
|
|
||||||
|
|
@ -206,6 +206,8 @@
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
transform: translateY(0);
|
transform: translateY(0);
|
||||||
|
|
||||||
|
grid-column: 1/-1; //For item descriptions in sheet elements
|
||||||
|
|
||||||
transition:
|
transition:
|
||||||
opacity 0.3s ease-out,
|
opacity 0.3s ease-out,
|
||||||
transform 0.3s ease-out;
|
transform 0.3s ease-out;
|
||||||
|
|
|
||||||
|
|
@ -127,4 +127,5 @@
|
||||||
<a data-action="toChat" data-tooltip="{{localize 'DAGGERHEART.Tooltip.sendToChat'}}"><i class="fa-regular fa-message"></i></a>
|
<a data-action="toChat" data-tooltip="{{localize 'DAGGERHEART.Tooltip.sendToChat'}}"><i class="fa-regular fa-message"></i></a>
|
||||||
<a data-action="triggerContextMenu" data-tooltip="{{localize 'DAGGERHEART.Tooltip.moreOptions'}}"><i class="fa-solid fa-ellipsis-vertical"></i></a>
|
<a data-action="triggerContextMenu" data-tooltip="{{localize 'DAGGERHEART.Tooltip.moreOptions'}}"><i class="fa-solid fa-ellipsis-vertical"></i></a>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="item-description">{{#unless isSidebar}}{{{item.system.description}}}{{/unless}}</div>
|
||||||
</li>
|
</li>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue