How to make a disabled select box look like a normal text box(css only) -
i tried change inline css of select box below
.chosen-disabled .chosen-single {   cursor: default;   color: #000;   border: 1px solid #444;  }   the select box appeared faded need normal text field(but still disabled).
please me here , in advance.
thank @christoph , @carine, override chose disable class giving inline css
.chosen-disabled {     opacity: 1 !important; }   now working fine, once again support.
Comments
Post a Comment