diff --git a/form_cliente.php b/form_cliente.php index 15cd521..76a35e2 100644 --- a/form_cliente.php +++ b/form_cliente.php @@ -598,12 +598,12 @@ function renderCampos(esquema, prefilled) { ` + wrapClose; } else if (c.tipo === 'radio') { const opts = (c.options||[]).map(o => ` -
+
`).join(''); - html += wrapOpen + `
${lbl}${opts}${linkedNote}
` + wrapClose; + html += wrapOpen + `
${lbl}
${opts}
${linkedNote}
` + wrapClose; } else if (c.tipo === 'checkbox') { const vals = Array.isArray(val) ? val : []; const opts = (c.options||[]).map(o => ` diff --git a/ver_formulario_enviado.php b/ver_formulario_enviado.php index 135c112..8f71200 100644 --- a/ver_formulario_enviado.php +++ b/ver_formulario_enviado.php @@ -633,6 +633,11 @@ function _addExamWizardHtml(string $cid): string { align-items: center; gap: 0; } + /* radios en fila: override display:flex → inline-flex */ + .campo-edit .d-flex .form-check { + display: inline-flex; + width: auto; + } .campo-edit .form-check-input { width: 1.35em; height: 1.35em;