mirror of
https://github.com/unraid/webgui.git
synced 2026-01-04 16:40:21 -06:00
style: wrap table in DeviceIdentify.page with TableContainer for improved layout
- Encapsulated the existing table within a <div> with class "TableContainer" to enhance responsiveness and layout consistency. - This change aligns with previous updates for better structure across similar components.
This commit is contained in:
@@ -26,10 +26,19 @@ $(function() {
|
||||
});
|
||||
</script>
|
||||
|
||||
<table class="unraid">
|
||||
<thead><td style="width:33%">_(Title)_</td><td>_(Information)_</td></thead>
|
||||
<tbody id="disk_identify"><tr><td colspan='2'><div class="spinner"></div></td></tr></tbody>
|
||||
</table>
|
||||
<div class="TableContainer">
|
||||
<table class="unraid">
|
||||
<thead>
|
||||
<td style="width:33%">_(Title)_</td>
|
||||
<td>_(Information)_</td>
|
||||
</thead>
|
||||
<tbody id="disk_identify">
|
||||
<tr>
|
||||
<td colspan='2'><div class="spinner"></div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<input type="button" value="_(Done)_" onclick="done()">
|
||||
|
||||
:smart_identity_help:
|
||||
|
||||
Reference in New Issue
Block a user