Merged with development

This commit is contained in:
WBHarry 2025-08-23 18:17:32 +02:00
commit bd76e22e8d
1096 changed files with 11080 additions and 5102 deletions

View file

@ -39,7 +39,7 @@
justify-content: center;
align-items: center;
padding: 3px 5px;
font-size: 12px;
font-size: var(--font-size-12);
font: @font-body;
background: light-dark(@dark-15, @beige-15);
@ -52,9 +52,16 @@
flex-direction: row;
justify-content: center;
align-items: center;
font-size: 12px;
font-size: var(--font-size-12);
}
}
.attribution-header-label {
text-align: left;
position: relative;
top: 4px;
margin-bottom: -6px;
}
}
.status-number {
@ -93,7 +100,7 @@
font-weight: bold;
text-align: center;
line-height: 18px;
font-size: 12px;
font-size: var(--font-size-12);
color: light-dark(@beige, @dark-blue);
}
}
@ -101,7 +108,7 @@
.item-name {
input[type='text'] {
font-size: 32px;
font-size: var(--font-size-32);
height: 42px;
text-align: start;
transition: all 0.3s ease;

View file

@ -0,0 +1,17 @@
@import '../../../utils/colors.less';
.application.sheet.daggerheart.actor.dh-style.environment {
.tab.potentialAdversaries {
.items-section {
display: flex;
flex-direction: column;
gap: 10px;
overflow-y: auto;
mask-image: linear-gradient(0deg, transparent 0%, black 5%);
padding-bottom: 20px;
scrollbar-width: thin;
scrollbar-color: light-dark(@dark-blue, @golden) transparent;
}
}
}

View file

@ -5,6 +5,10 @@
.appTheme({
&.environment {
background-image: url('../assets/parchments/dh-parchment-dark.png');
.attribution-header-label {
background-image: url('../assets/parchments/dh-parchment-dark.png');
}
}
}, {
&.environment {
@ -18,5 +22,11 @@
overflow-y: auto;
scrollbar-width: thin;
scrollbar-color: light-dark(@dark-blue, @golden) transparent;
&.active {
overflow: hidden;
display: flex;
flex-direction: column;
}
}
}