Created by: ysds
This PR add pure CSS toggle button.
The button plugin will be no longer need, but this allows available both JS and pure css.
Button Plugin:
<button type="button" class="btn btn-secondary" data-toggle="button" aria-pressed="false" autocomplete="off">
Single toggle
</button>
Pure CSS (Required new .btn-group-input
class):
<div class="btn-group">
<input type="checkbox" class="btn-group-input" id="checkbox1">
<label class="btn btn-primary" for="checkbox1">Single toggle</label>
</div>
Demo: https://codepen.io/fellows3/pen/bQydEm
Fixes #25122 (closed) Fixes #27600 (closed)