Merged with development

This commit is contained in:
WBHarry 2025-09-06 23:23:07 +02:00
commit 19a07139ff
548 changed files with 4997 additions and 2887 deletions

View file

@ -86,7 +86,7 @@
.flavor-text {
font-size: var(--font-size-12);
line-height: 20px;
color: var(--color-dark-4);
color: light-dark(@dark, @beige);
text-align: center;
display: block;
}

View file

@ -603,9 +603,12 @@
display: flex;
justify-content: space-between;
align-items: center;
gap: 0.25rem 0.5rem;
flex-wrap: wrap;
label {
font-size: var(--font-size-16);
font-size: var(--font-size-14);
font-weight: normal;
}
.form-fields {
@ -613,6 +616,21 @@
gap: 4px;
align-items: center;
}
&.setting-two-values {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0.25rem 0.5rem;
.form-group {
justify-content: end;
flex-wrap: nowrap;
}
.hint {
grid-column: 1 / -1;
}
}
}
}

View file

@ -0,0 +1,14 @@
.measured-template-button,
.enriched-damage-button,
.duality-roll-button {
display: inline;
&.inline {
min-height: unset;
height: 18px;
}
i {
font-size: 12px;
}
}

View file

@ -0,0 +1,53 @@
.drag-area {
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
width: 100%;
height: 40px;
border: 1px dashed light-dark(@dark-blue-50, @beige-50);
border-radius: 3px;
color: light-dark(@dark-blue-50, @beige-50);
font-family: @font-body;
}
.daggerheart.dh-style {
.hint {
flex: 0 0 100%;
margin: 0;
color: var(--color-form-hint);
}
.form-group:hover {
.hint {
color: var(--color-form-hint-hover);
}
}
.loader {
position: relative;
overflow: hidden !important;
div {
opacity: 0.5;
}
&:before {
font-family: 'Font Awesome 6 Pro';
content: '\f110';
position: absolute;
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
animation: spinner 1.5s linear infinite;
}
}
@keyframes spinner {
to {
transform: rotate(360deg);
}
}
}

View file

@ -2,6 +2,8 @@
@import './dialog.less';
@import './chat.less';
@import './elements.less';
@import './enrichment.less';
@import './global.less';
@import './tab-navigation.less';
@import './tab-form-footer.less';
@import './tab-actions.less';