mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-03-07 06:26:13 +01:00
Merge branch 'v14-Dev' into v14/conditional-effects
This commit is contained in:
commit
1ba08e2f51
81 changed files with 503 additions and 140 deletions
|
|
@ -462,6 +462,12 @@
|
|||
}
|
||||
}
|
||||
|
||||
.three-columns {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr 1fr;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
line-div {
|
||||
display: block;
|
||||
height: 1px;
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -301,7 +301,7 @@
|
|||
}
|
||||
|
||||
.item-desc .wrapper {
|
||||
padding: 0 10px;
|
||||
padding: 0 0 0 50px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue