UPDATE: Demo of problem here: http://jsfiddle.net/fdB5Q/embedded/result/
From about 767px to 998px, the form fields are wider than the containing well.
Smaller t
As indicated by Pavlo in this answer: Twitter Bootstrap: Stop input field extending beyond well
Using the class input-block-level
in place of the input-xlarge (or other sizes) solves the problem as well.
For anyone to find
Html:
<input class="form-control" placeholder="Threshold Type">
CSS:
.form-control { box-sizing: border-box; }