Merged with main

This commit is contained in:
WBHarry 2026-04-22 15:32:10 +02:00
commit 4e555dd314
174 changed files with 3707 additions and 1217 deletions

View file

@ -24,6 +24,15 @@
width: 100%;
list-style-type: none;
&.bordered {
border: 1px solid;
border-radius: 6px;
.inventory-item-header .img-portait img.item-img {
border-radius: 6px 0 0 6px;
}
}
&:not(.single-img) {
.img-portait:has(.roll-img):hover {
.roll-img {

View file

@ -36,7 +36,7 @@ body.game:is(.performance-low, .noblur) {
}
button {
background: light-dark(transparent, @deep-black);
background: light-dark(#e8e6e3, @deep-black);
color: light-dark(@dark-blue, @beige);
border: 1px solid light-dark(@dark-blue, transparent);
padding: 0;

View file

@ -147,4 +147,10 @@
padding-bottom: 7px;
}
}
.sub-section-header {
display: flex;
align-items: center;
gap: 4px;
}
}

View file

@ -11,21 +11,6 @@
padding-bottom: 0;
overflow-x: auto;
&.viewMode {
button:not(.btn-toggle-view),
input:not(.search),
.controls,
.character-sidebar-sheet,
.img-portait,
.name-row,
.hope-section,
.downtime-section,
.character-traits,
.card-list {
pointer-events: none;
}
}
.character-sidebar-sheet {
grid-row: 1 / span 2;
grid-column: 1;

View file

@ -316,9 +316,9 @@
border-radius: 3px;
background: light-dark(@dark-blue, @golden);
clip-path: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
gap: 4px;
border: 1px solid transparent;
transition: all 0.3s ease;

View file

@ -6,12 +6,6 @@
#interface.theme-light {
.daggerheart.chat.domain-card {
.domain-card-move .domain-card-header {
border-bottom: 1px solid @dark-blue;
&:hover {
background: @dark-blue-10;
}
.domain-label {
.title {
color: @dark-blue;
@ -29,6 +23,13 @@
}
}
&:has(.description) .domain-card-move .domain-card-header {
border-bottom: 1px solid @dark-blue;
&:hover {
background: @dark-blue-10;
}
}
.description {
color: @dark;
}
@ -43,7 +44,7 @@
.card-img {
width: 100%;
height: 200px;
height: 180px;
mask-image: linear-gradient(0deg, transparent 0%, black 10%, black 90%, transparent 100%);
object-fit: cover;
}
@ -68,23 +69,12 @@
flex-direction: row;
align-items: center;
margin: 8px;
padding-bottom: 5px;
width: -webkit-fill-available;
gap: 5px;
border-bottom: 1px solid @golden;
&:hover {
background: @golden-10;
cursor: pointer;
transition: all 0.3s ease;
}
.domain-label {
display: flex;
flex-direction: column;
width: 100%;
padding-bottom: 5px;
width: -webkit-fill-available;
gap: 5px;
.title {
@ -95,7 +85,7 @@
.tags {
display: flex;
gap: 10px;
gap: 4px;
flex-wrap: wrap;
.tag {
@ -116,6 +106,16 @@
}
}
&:has(.description) .domain-card-move .domain-card-header {
border-bottom: 1px solid @golden;
padding-bottom: 5px;
&:hover {
background: @golden-10;
cursor: pointer;
transition: all 0.3s ease;
}
}
.description {
padding: 8px;
}

View file

@ -624,9 +624,14 @@
display: flex;
gap: 5px;
margin-top: 8px;
button {
height: 32px;
flex: 1;
&.end-button {
flex: 0;
}
}
}
@ -698,6 +703,11 @@
}
}
.action-roll-buttons {
width: 100%;
padding: 0 8px;
}
.description {
padding: 8px;