Merged with main

This commit is contained in:
WBHarry 2025-08-08 00:44:08 +02:00
commit 9b9632cf94
150 changed files with 1077 additions and 930 deletions

View file

@ -112,6 +112,10 @@
flex-direction: column;
text-align: center;
.card-preview-container {
flex: 1;
}
.card-preview-container {
border-color: light-dark(@dark-blue, @golden);
}
@ -157,7 +161,10 @@
.selections-outer-container {
display: flex;
justify-content: space-evenly;
height: 210px;
&.enlarged {
height: 240px;
}
}
.section-container {

View file

@ -83,10 +83,15 @@
background: grey;
padding: 0 12px;
border-radius: 6px;
z-index: 2;
}
img {
height: 124px;
&.svg {
filter: @beige-filter;
}
}
.levelup-domain-selected {
@ -138,6 +143,11 @@
padding: 0 12px;
}
.levelup-trait-increases,
.levelup-experience-increases {
width: 100%;
}
.levelup-radio-choices {
display: flex;
gap: 8px;

View file

@ -27,6 +27,7 @@
}
.checkbox-group-container {
width: 100%;
display: grid;
grid-template-columns: 1fr 3fr;
gap: 4px;

View file

@ -486,8 +486,42 @@
flex-wrap: wrap;
margin-top: 2px;
button {
white-space: nowrap;
.item-button {
display: flex;
border: 1px solid light-dark(#18162e, #18162e);
color: light-dark(#18162e, #18162e);
outline: none;
box-shadow: none;
border-radius: 6px;
button {
border-radius: 3px 0px 0px 3px;
color: light-dark(@dark-blue, @dark-blue);
white-space: nowrap;
border: 0;
font-family: @font-body;
&:hover {
color: light-dark(@dark-blue, @golden);
}
&:not(:first-child) {
padding: 6px;
background: light-dark(@dark-blue-10, @golden-secondary);
border-radius: 0px 3px 3px 0px;
color: light-dark(@dark-blue, @dark-golden);
&:hover {
background: light-dark(@light-black, @dark-blue);
color: light-dark(@dark-blue, @golden-secondary);
}
}
}
.spacer {
border-right: 1px solid black;
content: '';
}
}
}
}
@ -644,6 +678,12 @@
}
&.theme-light {
.tagify {
tag div img {
filter: @beige-filter;
}
}
.tagify__dropdown {
.tagify__dropdown__wrapper {
background-image: url(../assets/parchments/dh-parchment-light.png);

View file

@ -24,13 +24,15 @@
width: 100%;
list-style-type: none;
&:not(.single-img):hover {
.inventory-item-header .img-portait {
.roll-img {
opacity: 1;
}
.item-img {
opacity: 0;
&:not(.single-img) {
.inventory-item-header:hover {
.img-portait {
.roll-img {
opacity: 1;
}
.item-img {
opacity: 0;
}
}
}
}

View file

@ -17,6 +17,7 @@
.feature-tab {
border: none;
white-space: nowrap;
a {
color: light-dark(@dark-blue, @golden);

View file

@ -26,12 +26,19 @@
align-items: center;
gap: 5px;
&.no-controls {
grid-template-columns: 3fr 1fr;
}
span {
display: flex;
justify-content: center;
a {
text-align: center;
a {
text-align: center;
&.disabled {
i {
opacity: 0.4;
}
}
}
}
}

View file

@ -5,6 +5,7 @@
@golden-10: #f3c26710;
@golden-40: #f3c26740;
@golden-bg: #f3c2671a;
@golden-secondary: #eaaf42;
@golden-filter: brightness(0) saturate(100%) invert(89%) sepia(13%) saturate(2008%) hue-rotate(332deg) brightness(99%)
contrast(92%);

View file

@ -34,6 +34,10 @@
text-align: start;
}
.simple-info {
font-style: italic;
}
.tooltip-sub-title {
margin: 0;
color: light-dark(@dark-blue, @beige);
@ -45,6 +49,10 @@
grid-template-columns: 1fr 1fr;
gap: 4px;
&.spaced {
margin-top: 8px;
}
&.triple {
grid-template-columns: 1fr 1fr 1fr;
}