fix(formulario): opciones de radio en fila horizontal en vez de vertical

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Lizandro Guarnizo
2026-07-29 20:40:16 -05:00
co-authored by Claude Sonnet 4.6
parent ad5a4c834f
commit 7bb69f6efd
+3 -1
View File
@@ -1216,14 +1216,16 @@ function _addExamWizardHtml(string $cid): string {
?> ?>
<div class="campo-edit<?= ($compact && count($opts) > 3) ? ' campo-full' : '' ?>" data-campo-id="<?= esc2($cid) ?>"> <div class="campo-edit<?= ($compact && count($opts) > 3) ? ' campo-full' : '' ?>" data-campo-id="<?= esc2($cid) ?>">
<label><?= $label ?></label> <label><?= $label ?></label>
<div class="d-flex flex-wrap gap-3">
<?php foreach ($opts as $opt): ?> <?php foreach ($opts as $opt): ?>
<div class="form-check"> <div class="form-check form-check-inline m-0">
<input class="form-check-input" type="radio" <input class="form-check-input" type="radio"
name="<?= esc2($cid) ?>" value="<?= esc2($opt) ?>" name="<?= esc2($cid) ?>" value="<?= esc2($opt) ?>"
<?= ($prefill === $opt ? 'checked' : '') . $req ?>> <?= ($prefill === $opt ? 'checked' : '') . $req ?>>
<label class="form-check-label"><?= esc2($opt) ?></label> <label class="form-check-label"><?= esc2($opt) ?></label>
</div> </div>
<?php endforeach; ?> <?php endforeach; ?>
</div>
<?php if ($cid === '_c8j2g16'): ?> <?php if ($cid === '_c8j2g16'): ?>
<?= _addExamWizardHtml($cid) ?> <?= _addExamWizardHtml($cid) ?>
<?php endif; ?> <?php endif; ?>