daggerheart/styles/less/sheets-settings/character-settings/sheet.less
Dapoulp a72d4583cd
[PR]Add custom formula to weapon base attack (#964)
* Add custom formula to weapon base attack

* Remove log

* Update weapon custom damage formula label + update font-size in px
2025-08-23 14:54:57 +02:00

50 lines
1.4 KiB
Text

@import '../../utils/colors.less';
.theme-light .application.daggerheart.dh-style.dialog {
.tab.details {
.traits-inner-container .trait-container {
background: url('../assets/svg/trait-shield-light.svg') no-repeat;
div {
filter: drop-shadow(0 0 3px @beige);
text-shadow: 0 0 3px @beige;
}
}
}
}
.application.daggerheart.dh-style.dialog {
.tab.details {
.traits-inner-container {
width: 100%;
display: flex;
align-items: center;
justify-content: space-evenly;
gap: 8px;
.trait-container {
width: 60px;
height: 60px;
background: url(../assets/svg/trait-shield.svg) no-repeat;
display: flex;
flex-direction: column;
align-items: center;
div {
filter: drop-shadow(0 0 3px black);
text-shadow: 0 0 3px black;
font-size: var(--font-size-12);
}
input {
text-align: center;
width: 32px;
height: 24px;
position: relative;
top: 2px;
padding: 0;
}
}
}
}
}