mirror of
https://github.com/owntone/owntone-server.git
synced 2025-11-11 06:20:17 -05:00
[web] Harmonise use use of rounded switches
Checkboxes have now the same appearance all over the UI.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user