I am having a problem with upload feedback. form-control-feedback When used with a drop-down list, it does not align properly. How do I want it to appear in the right corner after , as shown in IE 11 (below screencast). It works in IE11, but not in all other browsers (Firefox, Chrome, Safari). I worked a little with the search engine and did not find any workarounds / solutions and did not know if there was an error or the way they were intended.
Created a fiddle here http://jsfiddle.net/12qcwbbw/ .
This rule seems to be css .has-feedback .form-control{padding-right: 42.5px;} only works in IE11.
Here are the screenlists;
This is what it is rendering on IE 11 and what I want in other browsers.

Firefox

Google chrome

Safari

Here is my html;
<div class="form-horizontal middle" > <div class="col-xs-12 col-sm-12"> <div class="form-group"> <label class="col-xs-12 col-sm-3 control-label">Full Name</label> <div class="col-xs-12 col-sm-9 has-feedback" > <input type="text" class="form-control text-capitalize" name="FullName" id="txtFullName" placeholder="Full Name" /> <span class="glyphicon glyphicon-remove text-danger form-control-feedback"> </span> </div> </div> <div class="form-group "> <label class="col-xs-12 col-sm-3 control-label">Gender</label> <div class="col-xs-12 col-sm-9 has-feedback"> <select class="form-control"> <option>Male</option> <option>Female</option> <option>Other</option> </select> <i class="glyphicon glyphicon-remove text-danger form-control-feedback"></i> </div> </div> </div>
Any workaround is welcome!
html css twitter-bootstrap
c-sharp
source share