2025-12-04 15:03:29 +01:00
|
|
|
select,
|
|
|
|
|
input[type="text"],
|
|
|
|
|
input[type="number"] {
|
|
|
|
|
background-color: var(--color-browngray-300);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.field--view-only {
|
|
|
|
|
opacity: 0.3;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-05 18:21:54 +01:00
|
|
|
/* Label with CSS tooltip */
|
|
|
|
|
.label-with-tooltip {
|
|
|
|
|
text-decoration: underline dotted;
|
|
|
|
|
text-decoration-color: var(--color-browngray-200);
|
|
|
|
|
text-underline-offset: 2px;
|
|
|
|
|
cursor: help;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
|
content: attr(data-css);
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 100%;
|
|
|
|
|
left: 0;
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
padding: 0.25rem 0.5rem;
|
|
|
|
|
background: var(--color-browngray-700);
|
|
|
|
|
color: var(--color-browngray-100);
|
|
|
|
|
font-family: "Courier New", Courier, monospace;
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
transition:
|
|
|
|
|
opacity 0.15s ease,
|
|
|
|
|
visibility 0.15s ease;
|
|
|
|
|
z-index: 10;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover::after {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
visibility: visible;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-04 15:03:29 +01:00
|
|
|
.settings-section {
|
|
|
|
|
h2 {
|
|
|
|
|
border-bottom: 1px solid #000;
|
2025-12-04 16:14:50 +01:00
|
|
|
margin-bottom: var(--space-xs);
|
2025-12-04 15:03:29 +01:00
|
|
|
}
|
|
|
|
|
.settings-subsection:not(:last-child) {
|
|
|
|
|
border-bottom: 1px solid var(--color-browngray-050);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.settings-subsection {
|
2025-12-04 16:14:50 +01:00
|
|
|
padding: var(--space-xs) 0;
|
|
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
|
margin-bottom: var(--space-xs);
|
|
|
|
|
}
|
2025-12-04 15:03:29 +01:00
|
|
|
|
|
|
|
|
.field {
|
|
|
|
|
display: flex;
|
2025-12-04 16:14:50 +01:00
|
|
|
|
|
|
|
|
label,
|
|
|
|
|
select {
|
2025-12-04 15:03:29 +01:00
|
|
|
width: 50%;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-04 16:14:50 +01:00
|
|
|
input {
|
|
|
|
|
padding: 0.1rem 0.1rem 0.1rem 0.3rem;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-04 15:03:29 +01:00
|
|
|
.input-with-unit {
|
|
|
|
|
display: flex;
|
2025-12-04 16:14:50 +01:00
|
|
|
gap: 0.3rem;
|
|
|
|
|
|
|
|
|
|
.unit-toggle {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 0.3rem;
|
|
|
|
|
}
|
2025-12-04 15:03:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input-with-color {
|
2025-12-04 16:14:50 +01:00
|
|
|
width: 50%;
|
2025-12-04 15:03:29 +01:00
|
|
|
.clr-field {
|
|
|
|
|
display: flex;
|
|
|
|
|
button {
|
|
|
|
|
position: absolute;
|
|
|
|
|
transform: none;
|
2025-12-04 16:14:50 +01:00
|
|
|
height: 1.1rem;
|
2025-12-04 15:03:29 +01:00
|
|
|
top: auto;
|
|
|
|
|
right: auto;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input {
|
|
|
|
|
padding-left: 2.5rem;
|
2025-12-04 16:14:50 +01:00
|
|
|
width: 100%;
|
2025-12-04 15:03:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.margins {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
2025-12-04 16:14:50 +01:00
|
|
|
row-gap: var(--space-xs);
|
|
|
|
|
|
2025-12-04 15:03:29 +01:00
|
|
|
h3 {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
.field {
|
|
|
|
|
width: 50%;
|
|
|
|
|
|
|
|
|
|
label {
|
2025-12-04 16:22:34 +01:00
|
|
|
width: 30%;
|
2025-12-04 15:03:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input-with-unit {
|
|
|
|
|
input {
|
|
|
|
|
width: 50%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|