mercredi 19 mai 2021

Need to change the normal checkbox tick as bootstrap checkbox tick

I have 2 checkbox and one of the checkbox is created using Bootstrap and one is normal. I want to show the normal checkbox as like bootstrap tick box.

enter image description here

Below is my code:

.custom-checkbox-input {
     position: relative;
     z-index: 1;
     display: block;
     min-height: 1.5rem;
     padding-left: 1.5rem;
}
 .custom-checkbox-input .form-check-input {
     width: 20px;
     height: 20px;
}
 .custom-checkbox-input .form-check-input::after {
     content: '';
     display: inline-block;
     width: 20px;
     height: 20px;
     border: solid 1px grey;
     border-radius: 2px;
}
 .custom-checkbox-input .form-check-input:checked::after {
     width: 20px;
     height: 20px;
     border: solid 1px red;
     content: '✔';
     background-color: red;
     color: white;
     text-align: center;
}
 .custom-checkbox-input .form-check-input .custom-color-grey::after {
     background-color: grey;
}
 .custom-checkbox-input .form-check-input .custom-color-white::after {
     background-color: white;
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
    <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<div class="custom-checkbox-input">
        <input class="form-check-input custom-color-white" type="checkbox">
    </div>



Aucun commentaire:

Enregistrer un commentaire