feat: added beacon operation config editor

This commit is contained in:
Andrew Rioux
2025-01-31 02:00:22 -05:00
parent 66b59531c5
commit 71b2f70686
11 changed files with 398 additions and 20 deletions
+28
View File
@@ -0,0 +1,28 @@
main.beacons div.config {
padding: 10px;
fieldset {
display: grid;
grid-template-columns: 300px 200px;
input, label {
margin: 10px;
}
}
.mode-regular, .mode-random, .mode-cron {
display: none;
}
select:has(> option[value="regular"]:checked) ~ .mode-regular {
display: block;
}
select:has(> option[value="random"]:checked) ~ .mode-random {
display: block;
}
select:has(> option[value="cron"]:checked) ~ .mode-cron {
display: block;
}
}