JSFiddle - React, Tailwind, and code Playground

by RaphaelDDL

HTML

<form>
<select data-ng-disabled="!option.selectedSubject" 
data-ng-model="option.selectedContentType" 
data-ng-options="item.id as item.name for item in option.contentTypes" 
class="ng-pristine ng-valid" 
disabled="disabled">
<option style="display: none" value="" class="">Select Content Type</option></select>
</form>

CSS

form select:disabled {
      color: #A9A9A9;
      border: 1px solid #adcede;
      opacity: 0.5;
    }