mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-03-09 12:41:20 +01:00
Merge branch 'development' into feature/1383-Companion-Bonus-Levelups
This commit is contained in:
commit
2fcad0ff25
66 changed files with 1389 additions and 151 deletions
27
styles/less/dialog/character-reset/sheet.less
Normal file
27
styles/less/dialog/character-reset/sheet.less
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
.daggerheart.dh-style.dialog.views.character-reset {
|
||||
.character-reset-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
|
||||
legend {
|
||||
padding: 0 4px;
|
||||
}
|
||||
|
||||
.character-reset-header {
|
||||
font-size: var(--font-size-18);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.reset-data-container {
|
||||
display: grid;
|
||||
grid-template-columns: 3fr 2fr;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
|
||||
label {
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -41,3 +41,5 @@
|
|||
@import './settings/change-currency-icon.less';
|
||||
|
||||
@import './risk-it-all/sheet.less';
|
||||
|
||||
@import './character-reset/sheet.less';
|
||||
|
|
|
|||
|
|
@ -15,6 +15,14 @@
|
|||
.message-header .message-header-main .message-sub-header-container h4 {
|
||||
color: @dark-blue;
|
||||
}
|
||||
|
||||
.message-content {
|
||||
.table-draw {
|
||||
.table-description {
|
||||
color: @dark;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -83,6 +91,7 @@
|
|||
|
||||
.message-content {
|
||||
padding-bottom: 8px;
|
||||
|
||||
.flavor-text {
|
||||
font-size: var(--font-size-12);
|
||||
line-height: 20px;
|
||||
|
|
@ -90,6 +99,33 @@
|
|||
text-align: center;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.table-draw {
|
||||
.table-flavor {
|
||||
padding-top: 5px;
|
||||
padding-bottom: 0.5rem;
|
||||
font-size: var(--font-size-12);
|
||||
}
|
||||
|
||||
.table-description {
|
||||
color: @beige;
|
||||
font-style: italic;
|
||||
|
||||
&.flavor-spaced {
|
||||
padding-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.table-results {
|
||||
.description {
|
||||
flex-basis: min-content;
|
||||
|
||||
> p:first-of-type {
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -24,13 +24,13 @@
|
|||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.clown-car img {
|
||||
transition: 0.5s;
|
||||
.clown-car img {
|
||||
transition: 0.5s;
|
||||
|
||||
&.flipped {
|
||||
transform: scaleX(-1);
|
||||
}
|
||||
&.flipped {
|
||||
transform: scaleX(-1);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -40,4 +40,5 @@
|
|||
@import './items/heritage.less';
|
||||
@import './items/item-sheet-shared.less';
|
||||
|
||||
@import './rollTables/sheet.less';
|
||||
@import './actions/actions.less';
|
||||
|
|
|
|||
29
styles/less/sheets/rollTables/sheet.less
Normal file
29
styles/less/sheets/rollTables/sheet.less
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
.application.sheet.roll-table-sheet {
|
||||
.formulas-section {
|
||||
legend {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.formulas-container {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr 40px;
|
||||
gap: 10px;
|
||||
text-align: center;
|
||||
|
||||
.formula-button {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.roll-table-view-formula-container {
|
||||
width: fit-content;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue