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

java - Spring Data JPA: Why findOne(id) executing delete query internally? -

python - Mongodb How to add addtional information when aggregating? -

java - Incorrect order of records in M-M relationship in hibernate -