[web] Harmonise use use of rounded switches

Checkboxes have now the same appearance all over the UI.
This commit is contained in:
Alain Nussbaumer
2023-07-02 18:07:12 +02:00
parent bfd406206b
commit 5f433a2c20
3 changed files with 47 additions and 67 deletions

View File

@@ -53,15 +53,14 @@
<div v-for="output in outputs" :key="output.id">
<div class="field">
<div class="control">
<label class="checkbox">
<input
v-model="output.selected"
type="checkbox"
class="mr-2"
@change="output_toggle(output.id)"
/>
<span v-text="output.name" />
</label>
<input
:id="output.id"
v-model="output.selected"
type="checkbox"
class="switch is-rounded mr-2"
@change="output_toggle(output.id)"
/>
<label :for="output.id" class="checkbox" v-text="output.name" />
</div>
</div>
<form