mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-14 04:31:07 +01:00
Merged with main
This commit is contained in:
commit
d6acbcb281
16 changed files with 230 additions and 0 deletions
|
|
@ -2370,6 +2370,9 @@ div.daggerheart.views.multiclass {
|
|||
align-items: center;
|
||||
gap: 5px;
|
||||
}
|
||||
.application.sheet.daggerheart.dh-style.active-effect-config label {
|
||||
white-space: nowrap;
|
||||
}
|
||||
.daggerheart.sheet .title-container {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
|
|
@ -3193,6 +3196,14 @@ div.daggerheart.views.multiclass {
|
|||
font-weight: bold;
|
||||
font-size: smaller;
|
||||
}
|
||||
.application.sheet.dh-style .two-columns {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 2fr;
|
||||
gap: 10px;
|
||||
}
|
||||
.application.sheet.dh-style .two-columns.even {
|
||||
grid-template-columns: 1fr 1fr;
|
||||
}
|
||||
.application.sheet.dh-style line-div {
|
||||
display: block;
|
||||
height: 1px;
|
||||
|
|
@ -3400,6 +3411,16 @@ div.daggerheart.views.multiclass {
|
|||
text-shadow: none;
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
}
|
||||
.sheet.daggerheart.dh-style .tab-form-footer {
|
||||
display: flex;
|
||||
padding: 0 10px;
|
||||
position: relative;
|
||||
bottom: -32px;
|
||||
}
|
||||
.sheet.daggerheart.dh-style .tab-form-footer button {
|
||||
flex: 1;
|
||||
border-width: 2px;
|
||||
}
|
||||
.sheet.daggerheart.dh-style .tab.actions .actions-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
@import './less/global/sheet.less';
|
||||
@import './less/global/elements.less';
|
||||
@import './less/global/tab-navigation.less';
|
||||
@import './less/global/tab-form-footer.less';
|
||||
@import './less/global/tab-actions.less';
|
||||
@import './less/global/item-header.less';
|
||||
@import './less/global/feature-section.less';
|
||||
|
|
|
|||
|
|
@ -151,6 +151,16 @@
|
|||
}
|
||||
}
|
||||
|
||||
.two-columns {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 2fr;
|
||||
gap: 10px;
|
||||
|
||||
&.even {
|
||||
grid-template-columns: 1fr 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
line-div {
|
||||
display: block;
|
||||
height: 1px;
|
||||
|
|
|
|||
13
styles/less/global/tab-form-footer.less
Normal file
13
styles/less/global/tab-form-footer.less
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
.sheet.daggerheart.dh-style {
|
||||
.tab-form-footer {
|
||||
display: flex;
|
||||
padding: 0 10px;
|
||||
position: relative;
|
||||
bottom: -32px;
|
||||
|
||||
button {
|
||||
flex: 1;
|
||||
border-width: 2px;
|
||||
}
|
||||
}
|
||||
}
|
||||
5
styles/sheets/activeEffect.less
Normal file
5
styles/sheets/activeEffect.less
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
.application.sheet.daggerheart.dh-style.active-effect-config {
|
||||
label {
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
@import './heritage.less';
|
||||
@import './class.less';
|
||||
@import './activeEffect.less';
|
||||
|
||||
.daggerheart.sheet {
|
||||
.title-container {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue