Skip to content
Snippets Groups Projects
Commit cc02f069 authored by Benoît Harrault's avatar Benoît Harrault
Browse files

Use nice checkbox style for short/long selectors

parent ecaed674
No related branches found
No related tags found
1 merge request!46Resolve "Use nice radio buttons to choose short/long playlist"
...@@ -12,16 +12,16 @@ ...@@ -12,16 +12,16 @@
</div> </div>
<div class="row"> <div class="row">
<div class="col-md-6 col-sm-12"> <div class="col-md-6 col-sm-12">
<div> <div class="form-check form-switch">
<input <input
type="checkbox" type="checkbox"
class="custom-control-input" class="form-check-input"
id="check-quick-create-long-playlist" id="check-quick-create-long-playlist"
name="check-quick-create-long-playlist" name="check-quick-create-long-playlist"
value="long-playlist" value="long-playlist"
checked checked
> >
<label class="custom-control-label" for="check-quick-create-long-playlist"> <label class="form-check-label" for="check-quick-create-long-playlist">
Generate a long playlist (x2) Generate a long playlist (x2)
</label> </label>
</div> </div>
...@@ -51,28 +51,28 @@ ...@@ -51,28 +51,28 @@
</ul> </ul>
<div class="row"> <div class="row">
<div class="col-md-8 col-sm-12"> <div class="col-md-8 col-sm-12">
<div> <div class="form-check form-switch">
<input <input
type="checkbox" type="checkbox"
class="custom-control-input" class="form-check-input"
id="check-top-artist-filter-artists" id="check-top-artist-filter-artists"
name="check-top-artist-filter-artists" name="check-top-artist-filter-artists"
value="filter-artists" value="filter-artists"
checked checked
> >
<label class="custom-control-label" for="check-top-artist-filter-artists"> <label class="form-check-label" for="check-top-artist-filter-artists">
Allow only selected artists in recommendations Filter only selected artists in recommendations
</label> </label>
</div> </div>
<div> <div class="form-check form-switch">
<input <input
type="checkbox" type="checkbox"
class="custom-control-input" class="form-check-input"
id="check-top-artist-long-playlist" id="check-top-artist-long-playlist"
name="check-top-artist-long-playlist" name="check-top-artist-long-playlist"
value="long-playlist" value="long-playlist"
> >
<label class="custom-control-label" for="check-top-artist-long-playlist"> <label class="form-check-label" for="check-top-artist-long-playlist">
Generate a long playlist (x2) Generate a long playlist (x2)
</label> </label>
</div> </div>
...@@ -92,28 +92,28 @@ ...@@ -92,28 +92,28 @@
</ul> </ul>
<div class="row"> <div class="row">
<div class="col-md-8 col-sm-12"> <div class="col-md-8 col-sm-12">
<div> <div class="form-check form-switch">
<input <input
type="checkbox" type="checkbox"
class="custom-control-input" class="form-check-input"
id="check-playlist-filter-artists" id="check-playlist-filter-artists"
name="check-playlist-filter-artists" name="check-playlist-filter-artists"
value="filter-artists" value="filter-artists"
checked checked
> >
<label class="custom-control-label" for="check-playlist-filter-artists"> <label class="form-check-label" for="check-playlist-filter-artists">
Allow only artists in selected playlists in recommendations Filter only artists in selected playlists in recommendations
</label> </label>
</div> </div>
<div> <div class="form-check form-switch">
<input <input
type="checkbox" type="checkbox"
class="custom-control-input" class="form-check-input"
id="check-playlist-long-playlist" id="check-playlist-long-playlist"
name="check-playlist-long-playlist" name="check-playlist-long-playlist"
value="long-playlist" value="long-playlist"
> >
<label class="custom-control-label" for="check-playlist-long-playlist"> <label class="form-check-label" for="check-playlist-long-playlist">
Generate a long playlist (x2) Generate a long playlist (x2)
</label> </label>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment