Skip to content

Commit eb384a6

Browse files
committed
Make checkbox pick up Bootswatch 4 United styling
1 parent 25f2789 commit eb384a6

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

index.htm

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
}
3131

3232
/* Keep checkbox "There is a previous release" well visible at all times */
33-
#prev-release.disabled .form-check label {
33+
#prev-release.disabled .custom-control label {
3434
color: #212529 !important;
3535
}
3636

@@ -358,9 +358,9 @@ <h1 class="display-3"><a href="" class="logo">Shared Library Version Bump</a></h
358358
<div id="prev-release">
359359
<h2 class="display-4 mt-0">Previous Release</h2>
360360
<div class="container">
361-
<div class="form-check">
362-
<input class="form-check-input" type="checkbox" id="prev-exists">
363-
<label class="form-check-label" for="prev-exists">
361+
<div class="custom-control custom-checkbox">
362+
<input class="custom-control-input" type="checkbox" id="prev-exists">
363+
<label class="custom-control-label" for="prev-exists">
364364
There is a previous release
365365
</label>
366366
</div>
@@ -390,28 +390,28 @@ <h2 class="mt-4">
390390
<small class="text-muted">in the Mean Time</small>
391391
</h2>
392392
<div class="container">
393-
<div class="form-check">
394-
<input class="form-check-input" type="checkbox" id="changes-any">
395-
<label class="form-check-label" for="changes-any">
393+
<div class="custom-control custom-checkbox">
394+
<input class="custom-control-input" type="checkbox" id="changes-any">
395+
<label class="custom-control-label" for="changes-any">
396396
Changed something in the source code
397397
</label>
398398
</div>
399399
<div style="padding-left: 1.4em">
400-
<div class="form-check">
401-
<input class="form-check-input" type="checkbox" id="changes-added">
402-
<label class="form-check-label" for="changes-added">
400+
<div class="custom-control custom-checkbox">
401+
<input class="custom-control-input" type="checkbox" id="changes-added">
402+
<label class="custom-control-label" for="changes-added">
403403
Added something new to the public interface
404404
</label>
405405
</div>
406-
<div class="form-check">
407-
<input class="form-check-input" type="checkbox" id="changes-removed">
408-
<label class="form-check-label" for="changes-removed">
406+
<div class="custom-control custom-checkbox">
407+
<input class="custom-control-input" type="checkbox" id="changes-removed">
408+
<label class="custom-control-label" for="changes-removed">
409409
Removed something from the public interface
410410
</label>
411411
</div>
412-
<div class="form-check">
413-
<input class="form-check-input" type="checkbox" id="changes-changed">
414-
<label class="form-check-label" for="changes-changed">
412+
<div class="custom-control custom-checkbox">
413+
<input class="custom-control-input" type="checkbox" id="changes-changed">
414+
<label class="custom-control-label" for="changes-changed">
415415
Changed any existing part of the public interface
416416
</label>
417417
</div>

0 commit comments

Comments
 (0)