Tactical Grid Range Band

This commit is contained in:
Litasa
2026-01-07 13:31:28 +00:00
committed by Vlyan
parent 607817302b
commit 4269946c30
10 changed files with 604 additions and 1 deletions

View File

@@ -20,5 +20,6 @@
@import "../scss/skills";
@import "../scss/items";
@import "../scss/twenty-questions";
@import "../scss/tactical-grid";
}
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,32 @@
// Set the label for in-world measurement to be the same as normal waypoint-label
@at-root #measurement .waypoint-label-additional {
color: var(--color-text-emphatic);
font-size: var(--font-size-24);
}
@at-root #tactical-grid-settings {
input[type="number"]:invalid {
background-color: red;
}
input[type="number"]:read-only {
border: none;
outline: none;
box-shadow: none;
background: transparent;
cursor: default;
pointer-events: none; /* not clickable or focusable */
user-select: none; /* text cannot be selected */
-webkit-user-select: none; /* Safari/Chrome */
-moz-user-select: none; /* Firefox */
}
.range_band {
display: flex;
flex-flow: wrap;
fieldset {
flex: 25%;
}
}
}