I tried to change the inline css of the select box as below
.chosen-disabled .chosen-single {
cursor: default;
color: #000;
border: 1px solid #444;
}
The select box appeared to be faded but I need it to be look like a normal text field(but still disabled).
Please help me here and thanks in advance.
Thank @Christoph and @Carine, i override the chose disable class by giving inline css as
.chosen-disabled {
opacity: 1 !important;
}
now its working fine, thanks once again for your support.
You can use the disabled CSS selector.
input[type="text"]:disabled {
background: #dddddd;
}
Demo: http://fiddle.jshell.net/bronni/ar1qoznj/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With