mirror of
https://github.com/unraid/webgui.git
synced 2026-01-05 17:20:04 -06:00
fix: settings submit button wrap in span
This commit is contained in:
@@ -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">
|
||||
|
||||
|
||||
: <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>
|
||||
|
||||
@@ -171,7 +171,10 @@ _(New date and time)_:
|
||||
|
||||
</div>
|
||||
|
||||
: <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>
|
||||
|
||||
@@ -467,7 +467,10 @@ _(Local TLD)_:
|
||||
:mgmt_local_tld_help:
|
||||
|
||||
|
||||
: <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>
|
||||
|
||||
|
||||
@@ -181,5 +181,8 @@ _(Copy syslog to flash on shutdown)_:
|
||||
:syslog_shutdown_flash_help:
|
||||
|
||||
|
||||
: <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>
|
||||
|
||||
@@ -333,6 +333,9 @@ echo "</table>";
|
||||
?>
|
||||
|
||||
|
||||
: <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;?>
|
||||
|
||||
Reference in New Issue
Block a user