Merge branch 'v14-Dev' into v14/conditional-effects

This commit is contained in:
WBHarry 2026-02-26 18:08:54 +01:00
commit 1ba08e2f51
81 changed files with 503 additions and 140 deletions

View file

@ -462,6 +462,12 @@
}
}
.three-columns {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 10px;
}
line-div {
display: block;
height: 1px;

View file

@ -50,6 +50,29 @@
transform: rotate(360deg);
}
}
.item-description-outer-container {
display: flex;
flex-direction: column;
gap: 8px;
.item-description-container {
h4 {
margin-bottom: 4px;
}
.item-description-inner-container {
p {
display: inline;
}
}
.item-links {
display: flex;
gap: 4px;
}
}
}
}
/* TODO: Remove me when this issue is resolved https://github.com/foundryvtt/foundryvtt/issues/13734 */

View file

@ -174,9 +174,12 @@
&.extensible {
display: grid;
grid-template-rows: 0fr;
transition: grid-template-rows 0.3s ease-in-out;
transition:
grid-template-rows 0.3s ease-in-out,
padding-top 0.3s ease-in-out;
&.extended {
grid-template-rows: 1fr;
padding-top: 4px;
}
.invetory-description {
overflow: hidden;

View file

@ -301,7 +301,7 @@
}
.item-desc .wrapper {
padding: 0 10px;
padding: 0 0 0 50px;
display: flex;
flex-direction: column;
gap: 5px;