Home Forums WoodMart support forum Problem with checkboxs in admin dashboard Reply To: Problem with checkboxs in admin dashboard

#421909

arkad
Participant

I have done a temporary solution. I have added a css file named admin.css in my child theme…

input[type="checkbox"], input[type="radio"] {
  -webkit-appearance: auto;
}

I have also added in my functions.php…

function admin_style() {
  wp_enqueue_style('admin-styles', get_stylesheet_directory_uri().'/admin.css');
}
add_action('admin_enqueue_scripts', 'admin_style');

I hope this problem can be fixed in next updates.
Greetings.