How to increase font and editing elements sizes in free jqgrid edit and add forms so that they have same sizes as in bootstrap. Twitter bootstrap allows to create good editing elements with active element hightligh using form-group and form-control classes like
<div class="form-group">
<label for="Kellaaeg">Kell</label>
<input class="form-control" id="Kellaaeg" name="Kellaaeg">
</div>
but free jqgrid does so use not support those classes.
I tried according to How to make element sizes to fill cell sizes and increase font in free jqgrid inline and form editing
.jqgrow > td input[type=text].editable,
.jqgrow > td input[type=date].editable,
.jqgrow > td input,
.jqgrow > td textarea {
height: 100%;
width: 100%;
font-size: 1em;
box-sizing: border-box;
}
.jqgrow > td select.editable,
.jqgrow > td select {
width: 100%;
font-size: 1em;
box-sizing: border-box;
}
but this changes only inline edit. Form elements are still to small. How to make edit, add, view form elements also same size as in bootstrap ?