- The default heavy checkmark (✔) appears as "✔"
- Bootstrap 4.3 seems to be altering the appearance of the check, causing it to display as a thick-green one, which is not what I prefer -- see example below
- I want to remove Bootstrap's styling, but I am unable to identify the specific CSS rules that are responsible for this. I have tried searching with
grep -irn 10004
without success
Is there a way to reset the style back to the default and undo the changes made by Bootstrap?
With Bootstrap:
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
✔
<div class="small text-muted">
If your browser shows something different, in Bootstrap this will appear as a green checkmark. The green checkmark is not the default. I am unsure how to change this HTML character back to its browser default style.</div>
Default (Preferred):
.small.text-muted {
color: #444;
font-size: .85rem;
}
✔
<div class="small text-muted">
This is how I want the checkmark to look, while still keeping Bootstrap on the page.</div>