feat: added beacon operation config editor
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
main.beacons div.categories {
|
||||
padding: 10px;
|
||||
|
||||
fieldset {
|
||||
display: grid;
|
||||
grid-template-columns: 150px 200px;
|
||||
|
||||
input, label {
|
||||
margin: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
main.beacons div.listeners {
|
||||
form {
|
||||
form, p, h2 {
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user