In my current project, I have incorporated Materialize but there is one particular select element that I do not want it to apply to:
<select>
<option value="Male">m</option>
<option value="Female">f</option>
</select>
I am considering creating a custom style for this element as the only solution, however, I am open to simpler alternatives since Materialize is a relatively new framework.
For context, I am utilizing Symfony3 and have experienced great results rendering components with Materialize in the type.php file, except for a ChoiceType. This is why I am seeking to disable the Materialize styling for the select element. Below is the relevant code snippet:
$opcionesLibreDeTalco = array(
'label' => 'Libre de talco',
'choices' => array(
'm' => 'Male',
'f' => 'Female'
)
);