style: enhance PluginInstall.page layout for improved clarity

- Wrapped input fields and labels in <div> elements for better structure and responsiveness.
- Updated headings to use <p><strong> for improved semantic clarity.
- This change aligns with previous updates for consistent layout across similar components.
This commit is contained in:
Zack Spear
2025-05-09 14:32:04 -07:00
parent ddeea55f37
commit 1aa7db9d9f
@@ -50,18 +50,22 @@ Tag="download"
});
</script>
**_(Enter URL of remote plugin file or local plugin file)_**
<form name="plugin_install" method="POST" target="progressFrame">
<input type="text" name="file" id="plugin_file" maxlength="1024" value="" style="width:33%">
<label style="margin-right: 10px;" title="_(Allows you to install the same or older version of a plugin)_">
<input type="checkbox" id="force_install" name="force_install">
_(Force Install)_
</label>
<input type="submit" value="_(Install)_">
<p><strong>_(Enter URL of remote plugin file or local plugin file)_</strong></p>
<div>
<input type="text" name="file" id="plugin_file" maxlength="1024" value="">
<label style="margin-right: 10px;" title="_(Allows you to install the same or older version of a plugin)_">
<input type="checkbox" id="force_install" name="force_install">
_(Force Install)_
</label>
<input type="submit" value="_(Install)_">
</div>
</form>
:plugin_install_help:
**_(Select local plugin file)_**
<div id="plugin_tree" class="textarea"></div>
<div>
<p><strong>_(Select local plugin file)_</strong></p>
<div id="plugin_tree" class="textarea"></div>
</div>