javascript - Disabled button color is not rendered correctly in IE9 -


in chrome, disabled button displayed blue color , border color, background color expected. in ie9 text color shown grey.

css:

 fieldset[disabled] .btn-default:hover,     .btn-default.disabled:focus,     .btn-default[disabled]:focus,     fieldset[disabled] .btn-default:focus,     .btn-default.disabled.focus,     .btn-default[disabled].focus,     fieldset[disabled] .btn-default.focus,     .btn-default.disabled:active,     .btn-default[disabled]:active,     fieldset[disabled] .btn-default:active,     .btn-default.disabled.active,     .btn-default[disabled].active,     fieldset[disabled] .btn-default.active {       background-color: #fff;       border-color: #ccc;     } .st-btn-default {   border: 2px solid #227ab9;   padding: .49rem .75rem;   color: #227ab9; } 

html:

<input id="buttonprev" type="button" class="localize btn btn-default st-btn-default" lang="previous" value="previous" disabled> 

disabled attribute partially working in ie9 check here more details


Comments

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -

How to provide Authorization & Authentication using Asp.net, C#? -