Merge branch 'main' into feature/chat-message-styles

This commit is contained in:
WBHarry 2025-07-28 20:54:02 +02:00
commit 094e0740dd
270 changed files with 13798 additions and 982 deletions

View file

@ -1,4 +1,5 @@
@import '../../utils/fonts.less';
@import '../../utils/colors.less';
.application.daggerheart.dh-style {
.actions-list,
@ -36,7 +37,8 @@
.action-item {
&:hover {
background-color: rgba(255, 255, 255, 0.05);
background-color: light-dark(@soft-shadow, @soft-white-shadow);
cursor: pointer;
}
padding: 5px;
border-radius: 5px;
@ -47,7 +49,6 @@
align-items: center;
gap: 10px;
font-family: @font-body;
cursor: pointer;
flex: 1;
i {
text-align: center;

View file

@ -0,0 +1,57 @@
@import '../../utils/spacing.less';
@import '../../utils/colors.less';
@import '../../utils/fonts.less';
.daggerheart.dh-style.dialog.death-move {
.death-move-container {
display: flex;
flex-direction: column;
gap: 5px;
.moves-list {
.move-item {
display: flex;
align-items: center;
gap: 5px;
&:hover {
background-color: light-dark(@soft-shadow, @soft-white-shadow);
cursor: pointer;
}
padding: 5px;
border-radius: 5px;
transition: background-color 0.3s ease-in-out;
.label {
display: flex;
align-items: center;
gap: 10px;
font-family: @font-body;
cursor: pointer;
flex: 1;
i {
text-align: center;
width: 30px;
}
}
input[type='radio'] {
margin-left: auto;
}
}
}
}
footer {
margin-top: 8px;
display: flex;
gap: 8px;
button {
flex: 1;
height: 40px;
font-family: @font-body;
font-weight: 600;
}
}
}

View file

@ -1,5 +1,6 @@
@import '../../utils/spacing.less';
@import '../../utils/colors.less';
@import '../../utils/fonts.less';
.theme-light .daggerheart.dh-style.views.downtime {
.downtime-container .activity-container .activity-selected-marker {
@ -69,7 +70,9 @@
button {
flex: 1;
font-family: 'Montserrat', sans-serif;
height: 40px;
font-family: @font-body;
font-weight: 600;
}
}
}

View file

@ -12,6 +12,8 @@
@import './downtime/downtime-container.less';
@import './death-move/death-move-container.less';
@import './beastform/sheet.less';
@import './character-creation/creation-action-footer.less';

View file

@ -443,6 +443,10 @@
}
.field-section {
display: flex;
flex-direction: column;
gap: 10px;
.split-section {
display: grid;
grid-template-columns: 1fr 1fr;
@ -455,9 +459,18 @@
grid-template-columns: 1fr 1fr;
gap: 10px;
&.full-width {
grid-template-columns: 1fr 1fr 1fr 1fr;
select {
grid-column: span 3;
}
}
label {
align-self: center;
text-align: center;
white-space: nowrap;
}
}
}

View file

@ -110,6 +110,10 @@
align-items: center;
justify-content: end;
gap: 8px;
.unequipped {
opacity: .5;
}
}
}

View file

@ -19,7 +19,7 @@
flex-direction: column;
align-items: center;
gap: 5px;
margin-top: 36px;
margin-top: var(--header-height);
text-align: center;
width: 80%;

View file

@ -15,6 +15,9 @@
// Window header styles
.window-header {
position: absolute;
width: 100%;
height: var(--header-height);
background: transparent;
border-bottom: none;
justify-content: end;
@ -41,11 +44,9 @@
.window-content {
padding: 0;
position: relative;
top: -36px;
min-height: -webkit-fill-available;
transition: opacity 0.3s ease;
padding-bottom: 20px;
margin-bottom: -36px;
.tab {
padding: 0 10px;

View file

@ -4,7 +4,7 @@
.application.sheet.daggerheart.actor.dh-style.adversary {
.adversary-header-sheet {
padding: 0 15px;
padding-top: 36px;
padding-top: var(--header-height);
width: 100%;
.name-row {

View file

@ -16,7 +16,7 @@
.application.sheet.daggerheart.actor.dh-style.character {
.character-header-sheet {
padding: 0 15px;
padding-top: 36px;
padding-top: var(--header-height);
width: 100%;
.name-row {

View file

@ -11,7 +11,6 @@
width: 100%;
padding-bottom: 0;
overflow-x: auto;
margin-bottom: 0;
.character-sidebar-sheet {
grid-row: 1 / span 2;

View file

@ -38,6 +38,8 @@
@beige-15: #efe6d815;
@beige-50: #efe6d850;
@soft-white-shadow: rgba(255, 255, 255, 0.05);
@light-black: rgba(0, 0, 0, 0.3);
@soft-shadow: rgba(0, 0, 0, 0.05);