mirror of
https://github.com/unraid/webgui.git
synced 2026-02-26 20:29:46 -06:00
fix: enhance layout consistency in OpenDevices.page
- Wrapped the devices table in a div for improved layout structure. - This change continues the effort to enhance visual consistency across the plugin.
This commit is contained in:
@@ -25,15 +25,30 @@ $('<?=$tabX?>').bind({click:function() {$('i.toggle').show('slow');}});
|
||||
<?endif;?>
|
||||
</script>
|
||||
|
||||
<table class="unraid disk_status">
|
||||
<thead><tr><td>_(Device)_</td><td>_(Identification)_</td><td><?=$power?>_(Temp)_</td><td>_(Reads)_</td><td>_(Writes)_</td><td>_(Errors)_</td><td>_(FS)_</td><td>_(Size)_</td><td>_(Used)_</td><td>_(Free)_</td></tr></thead>
|
||||
<tbody id="open_devices">
|
||||
<?
|
||||
foreach ($devs as $dev):
|
||||
echo "<tr><td colspan='10'></td></tr>";
|
||||
endforeach;
|
||||
?>
|
||||
</tbody>
|
||||
</table>
|
||||
<div class="TableContainer">
|
||||
<table class="unraid disk_status">
|
||||
<thead>
|
||||
<tr>
|
||||
<td>_(Device)_</td>
|
||||
<td>_(Identification)_</td>
|
||||
<td><?=$power?>_(Temp)_</td>
|
||||
<td>_(Reads)_</td>
|
||||
<td>_(Writes)_</td>
|
||||
<td>_(Errors)_</td>
|
||||
<td>_(FS)_</td>
|
||||
<td>_(Size)_</td>
|
||||
<td>_(Used)_</td>
|
||||
<td>_(Free)_</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="open_devices">
|
||||
<?
|
||||
foreach ($devs as $dev):
|
||||
echo "<tr><td colspan='10'></td></tr>";
|
||||
endforeach;
|
||||
?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
:open_devices_help:
|
||||
|
||||
Reference in New Issue
Block a user