<div class="row rowColGap formGrid">
- <dl class="col-xs-12 col-md-11">
+ <dl class="col-xs-12 col-md-10">
<dt></dt>
<dd>
<select id="{@$field->getPrefixedId()}_instructionsType">
</dd>
</dl>
- <dl class="col-xs-12 col-md-1">
+ <dl class="col-xs-12 col-md-2 text-right">
<dt></dt>
<dd>
<a href="#" class="button small" id="{@$field->getPrefixedId()}_addButton">{lang}wcf.global.button.add{/lang}</a>
</dd>
</dl>
- <dl class="col-xs-12 col-md-11">
+ <dl class="col-xs-12 col-md-10">
<dt></dt>
<dd>
<label><input type="checkbox" id="{@$field->getPrefixedId()}_instructions{literal}{$instructionsId}{/literal}_runStandalone" value="1"> {lang}wcf.acp.devtools.project.instruction.runStandalone{/lang}</label>
</dd>
</dl>
- <dl class="col-xs-12 col-md-1">
+ <dl class="col-xs-12 col-md-2 text-right">
<dt></dt>
<dd>
<a href="#" class="button small" id="{@$field->getPrefixedId()}_instructions{literal}{$instructionsId}{/literal}_addButton">{lang}wcf.global.button.add{/lang}</a>
var fromVersionDl = this._fromVersion.closest('dl');
if (this._instructionsType.value === 'update') {
- instructionsTypeList.remove('col-md-11');
- instructionsTypeList.add('col-md-6');
+ instructionsTypeList.remove('col-md-10');
+ instructionsTypeList.add('col-md-5');
elShow(fromVersionDl);
}
else {
- instructionsTypeList.remove('col-md-6');
- instructionsTypeList.add('col-md-11');
+ instructionsTypeList.remove('col-md-5');
+ instructionsTypeList.add('col-md-10');
elHide(fromVersionDl);
}
},