I'm wondering how to make an input field fill available width with input-prepend icons in twitter bootstrap 2.3.2 with responsive layout?
there is a css style in bootstrap input-block-level witch works fine until you prepend your input with an icon... How to get same functionality with prependet input?
<div class="control-group">
<label class="control-label" for="inputIcon">Email address</label>
<div class="controls">
<div class="input-prepend ">
<span class="add-on"><i class="icon-envelope"></i></span>
<input class="span2" id="inputIcon" type="text" class="input-block-level">
</div>
</div>
</div>
<div class="control-group">
<label class="control-label" for="inputPassword">Password</label>
<div class="controls">
<input type="password" id="inputPassword" placeholder="Password" class="input-block-level">
</div>
</div>
here is example of code illustrating this problem : http://jsfiddle.net/r3CyL/