I have a Rails app with Bootstrap.
I use this code to display boolean data as checkboxes in views:
<td class='bigcheckbox'><%= check_box_tag 'm_people', '1', menucontrol.m_people, disabled: true %></td>
The checkbox shows up small and grey instead of black.
I'm trying to make it larger and bold looking.
This is the css:
.bigcheckbox {
width: 20px!important;
height: 20px!important;
}
Thanks for the help!