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

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -