Added attribution for items, adversary and environment

This commit is contained in:
WBHarry 2025-08-17 00:37:34 +02:00
parent 2820c96259
commit 5f20505eda
22 changed files with 288 additions and 13 deletions

View file

@ -0,0 +1,23 @@
.daggerheart.dh-style.dialog.attribution {
.window-content {
padding-top: 0;
}
.attribution-container {
display: flex;
flex-direction: column;
gap: 8px;
h4 {
margin-bottom: 0;
}
footer {
display: flex;
button {
flex: 1;
}
}
}
}

View file

@ -1,3 +1,4 @@
@import './attribution/sheet.less';
@import './level-up/navigation-container.less';
@import './level-up/selections-container.less';
@import './level-up/sheet.less';

View file

@ -528,6 +528,17 @@
}
}
}
.artist-attribution {
width: 100%;
display: flex;
justify-content: left;
font-style: italic;
font-family: @font-body;
margin-top: 4px;
color: light-dark(#14142599, #efe6d850);
font-size: 12px;
padding-left: 3px;
}
}
.application.setting.dh-style {

View file

@ -1,8 +1,14 @@
.application.sheet.daggerheart.actor.dh-style {
.portrait img, .profile {
.portrait img,
.profile {
width: 100%;
object-fit: cover;
object-position: top center;
}
}
.attribution-header-label {
font-style: italic;
font-family: @font-body;
color: light-dark(@chat-blue-bg, @beige-50);
}
}

View file

@ -26,3 +26,4 @@
@import './items/class.less';
@import './items/domain-card.less';
@import './items/feature.less';
@import './items/item-sheet-shared.less';

View file

@ -0,0 +1,7 @@
.application.sheet.daggerheart.dh-style.item {
.attribution-header-label {
font-style: italic;
font-family: @font-body;
color: light-dark(@chat-blue-bg, @beige-50);
}
}