fix: settings submit button wrap in span

This commit is contained in:
Zack Spear
2025-05-20 16:29:56 -07:00
parent b428634a42
commit 516b42464e
5 changed files with 19 additions and 5 deletions

View File

@@ -26,5 +26,7 @@ function installPlugin(file) {
<input type="hidden" name="file" value="https://ca.unraid.net/dl/https://raw.githubusercontent.com/unraid/community.applications/master/plugins/community.applications.plg">
&nbsp;
: <input type="button" value="_(Install)_" onclick="installPlugin(this.form.file.value)">
: <span class="inline-block">
<input type="button" value="_(Install)_" onclick="installPlugin(this.form.file.value)">
</span>
</form>

View File

@@ -171,7 +171,10 @@ _(New date and time)_:
</div>
&nbsp;
: <input type="button" value="_(Apply)_" onclick="dispatch(this.form)" disabled><input type="button" value="_(Done)_" onclick="done()">
: <span class="inline-block">
<input type="button" value="_(Apply)_" onclick="dispatch(this.form)" disabled>
<input type="button" value="_(Done)_" onclick="done()">
</span>
</form>
<script>

View File

@@ -467,7 +467,10 @@ _(Local TLD)_:
:mgmt_local_tld_help:
&nbsp;
: <input type="button" value="_(Apply)_" onclick="checkPorts(this.form)" disabled><input type="button" value="_(Done)_" onclick="done()">
: <span class="inline-block">
<input type="button" value="_(Apply)_" onclick="checkPorts(this.form)" disabled>
<input type="button" value="_(Done)_" onclick="done()">
</span>
</form>

View File

@@ -181,5 +181,8 @@ _(Copy syslog to flash on shutdown)_:
:syslog_shutdown_flash_help:
&nbsp;
: <input type="button" value="_(Apply)_" onclick='validatePort(this.form)' disabled><input type="button" value="_(Done)_" onclick="done()">
: <span class="inline-block">
<input type="button" value="_(Apply)_" onclick='validatePort(this.form)' disabled>
<input type="button" value="_(Done)_" onclick="done()">
</span>
</form>

View File

@@ -333,6 +333,9 @@ echo "</table>";
?>
&nbsp;
: <input type="button" value="_(Apply)_" onclick="updateAccess(this.form)" disabled><input type="button" value="_(Done)_" onclick="done('UserEdit')">
: <span class="inline-block">
<input type="button" value="_(Apply)_" onclick="updateAccess(this.form)" disabled>
<input type="button" value="_(Done)_" onclick="done('UserEdit')">
</span>
</form>
<?endif;?>