Added styling for tables and also converted settings anchor to a button to enable styling

This commit is contained in:
2026-01-25 22:55:00 -07:00
parent 56403b5722
commit e99ce96563
2 changed files with 99 additions and 32 deletions

View File

@@ -1,34 +1,36 @@
<div data-role="page" class="page type-interior pluginConfigurationPage withTabs"
<div data-role="page" class="page type-interior pluginConfigurationPage"
data-controller="__plugin/media_cleaner_table.js">
<div data-role="content">
<div class="content-primary">
<div>
<a href="#configurationpage?name=Settings">Settings</a>
<div id="loading">Loading...</div>
<div id="page" style="visibility: hidden;">
<button class="links" data-target="#configurationpage?name=Settings">Settings</button>
<h2>Media Cleaner</h2>
<h3 id="moviesTitle"></h3>
<table id="moviesTable">
<thead>
<tr>
<th>Name</th>
<th class="actions-cell">Actions</th>
</tr>
</thead>
<tbody></tbody>
</table>
<br>
<h3 id="seriesTitle"></h3>
<table id="seriesTable">
<thead>
<tr>
<th>Name</th>
<th>Seasons</th>
<th class="actions-cell">Actions</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<h2>Media Cleaner</h2>
<h3 id="moviesTitle"></h3>
<table id="moviesTable">
<thead>
<tr>
<th>Name</th>
</tr>
</thead>
<tbody></tbody>
</table>
<br>
<br>
<h3 id="seriesTitle"></h3>
<table id="seriesTable">
<thead>
<tr>
<th>Name</th>
<th>Seasons</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
</div>