Add multiple conditions handler + update Bare Bones domain card

This commit is contained in:
Dapoolp 2025-09-02 16:39:02 +02:00
parent af3a415e56
commit 4a63836c0d
8 changed files with 213 additions and 38 deletions

View file

@ -530,6 +530,39 @@
font-size: var(--font-size-12);
padding-left: 3px;
}
.double-buttons {
display: grid;
grid-template-columns: 1fr 1fr;
margin-left: auto;
margin-bottom: .5rem;
margin-right: .5rem;
> button {
height: calc(var(--input-height) / 1.5);
min-height: calc(var(--input-height) / 1.5);
font-size: var(--font-size-12);
&:hover {
background-color: light-dark(transparent, #f3c267);
color: light-dark(#18162e, #18162e);
}
&.inactive {
background-color: @medium-red;
}
&:first-child {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
&:last-child {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
}
}
}
.application.setting.dh-style {