daggerheart/styles/less/ui/countdown/countdown-edit.less
WBHarry d137e33c3d
[Feature] Countdown Rols And Randomzie (#1329)
* .

* .

* .

* Raised system version
2025-11-25 00:36:43 +01:00

220 lines
6.2 KiB
Text

@import '../../utils/colors.less';
@import '../../utils/fonts.less';
.theme-light .daggerheart.application.dh-style.countdown-edit {
background-image: url('../assets/parchments/dh-parchment-light.png');
}
.daggerheart.application.dh-style.countdown-edit {
color: light-dark(@dark, @beige);
background-image: url('../assets/parchments/dh-parchment-dark.png');
.edit-container {
display: flex;
flex-direction: column;
gap: 8px;
h2 {
text-align: center;
color: light-dark(@dark, @golden);
}
.header-tools {
display: grid;
grid-template-columns: 2fr 1fr 144px;
gap: 8px;
.hide-tools {
white-space: nowrap;
flex-wrap: nowrap;
display: flex;
align-items: center;
input {
position: relative;
top: 2px;
}
}
.header-main-button {
height: 32px;
flex: 1;
}
.default-ownership-tools {
display: flex;
align-items: center;
gap: 8px;
select {
flex: 1;
background: light-dark(@beige, @dark-blue);
}
}
}
.edit-content {
display: flex;
flex-direction: column;
gap: 8px;
overflow-y: auto;
overflow-x: hidden;
max-height: 500px;
scrollbar-width: thin;
scrollbar-color: light-dark(@dark-blue, @golden) transparent;
.countdown-edit-outer-container {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 8px;
.countdown-edit-container {
width: 100%;
display: grid;
grid-template-columns: 48px 1fr 72px;
align-items: center;
gap: 8px;
img {
width: 52px;
height: 52px;
border-radius: 6px;
}
.countdown-edit-text {
display: flex;
flex-direction: column;
justify-content: center;
gap: 8px;
.countdown-edit-subtext {
display: flex;
align-items: center;
gap: 10px;
.countdown-edit-sub-tag {
padding: 3px 5px;
font-size: var(--font-size-12);
font: @font-body;
background: light-dark(@dark-15, @beige-15);
border: 1px solid light-dark(@dark, @beige);
border-radius: 3px;
}
.countdown-edit-loop {
position: relative;
.loop-marker {
position: absolute;
top: -4px;
font-size: 10px;
}
}
}
}
.countdown-edit-tools {
display: flex;
gap: 8px;
&.same-row {
margin-top: 17.5px;
}
a {
font-size: 16px;
}
}
}
}
.countdown-edit-row-container {
display: flex;
flex-direction: column;
gap: 2px;
.countdown-edit-subrow {
display: flex;
gap: 8px;
}
}
.countdown-edit-input {
position: relative;
flex: 1;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 2px;
&.type-input {
min-width: 120px;
}
&.looping-input {
min-width: 120px;
}
&.tiny {
flex: 0;
label {
white-space: nowrap;
}
input {
min-width: 2.5rem;
}
}
.countdown-random-input {
padding-right: var(--input-height);
}
.countdown-random-button {
position: absolute;
right: 0px;
bottom: 0px;
border-radius: 0 6px 6px 0;
height: var(--input-height);
display: flex;
align-items: center;
justify-content: center;
padding: 0 8px;
&[disabled] {
opacity: 0.5;
}
i {
font-size: 18px;
}
}
// .countdown-random-container {
// width: 100%;
// display: flex;
// input {
// border-radius: 6px 0 0 6px;
// border-right: 0;
// }
// button {
// border-radius: 0 6px 6px 0;
// height: var(--input-height);
// border: 1px solid white;
// }
// }
input,
select {
background: light-dark(@beige, @dark-blue);
color: light-dark(@dark, @beige);
}
}
}
}
}