Skip to content

Commit 914db5f

Browse files
[examiner] Column for 'Instrument' in certification menu appears narrow (#8453)
This is changing the CSS class used in the examiner page. The former class had a small percentage of the width causing the first field become narrow, by changing it to another class, the problem is solved. Fixes #8026
1 parent 522440d commit 914db5f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

modules/examiner/templates/form_editExaminer.tpl

+4-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</div>
1313
{/foreach}
1414
<div class="row hidden-xs hidden-sm">
15-
<div class="col-md-1">
15+
<div class="col-md-3">
1616
<label>Instrument</label>
1717
</div>
1818
<div class="col-md-2">
@@ -21,19 +21,20 @@
2121
<div class="col-md-2 col-md-offset-1">
2222
<label>Certification Date</label>
2323
</div>
24-
<div class="col-md-4 col-md-offset-1">
24+
<div class="col-md-2 col-md-offset-1">
2525
<label>Comments</label>
2626
</div>
2727
</div>
2828
<hr class="row hidden-xs hidden-sm">
2929
{foreach from=$instruments key=ID item=name}
3030
<div class="row">
31-
<div class="col-md-1">
31+
<div class="col-md-3">
3232
<label>{$form.$name.label}</label>
3333
</div>
3434
{$form.$name.html}
3535
</div>
3636
{/foreach}
37+
<hr class="row hidden-xs hidden-sm">
3738
<div class="row">
3839
{if not $success|default}
3940
<div class="col-xs-12">

0 commit comments

Comments
 (0)