mirror of https://github.com/lidarr/Lidarr
MassEdit table uses space better.
This commit is contained in:
parent
481a8ceb97
commit
934d9a92fa
|
@ -26,6 +26,10 @@
|
|||
margin: 2px 5px 2px 5px;
|
||||
}
|
||||
|
||||
td .path {
|
||||
width: 300px;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
border-width: 1px;
|
||||
|
@ -58,12 +62,12 @@
|
|||
{
|
||||
<table>
|
||||
<tr>
|
||||
<th>@Html.CheckBox("editToggleMaster", false, new { @class = "editToggleMaster" })</th>
|
||||
<th width="14px">@Html.CheckBox("editToggleMaster", false, new { @class = "editToggleMaster" })</th>
|
||||
<th>Title</th>
|
||||
<th>Quality</th>
|
||||
<th width="210px">Quality</th>
|
||||
<th class="checkboxColumn">Monitored</th>
|
||||
<th class="checkboxColumn">Season Folder</th>
|
||||
<th>Path</th>
|
||||
<th width="310px">Path</th>
|
||||
</tr>
|
||||
|
||||
@foreach (var series in Model)
|
||||
|
|
|
@ -18,6 +18,6 @@
|
|||
<td>@Html.DropDownListFor(m => m.QualityProfileId, new SelectList((List<QualityProfile>)ViewData["QualityProfiles"], "QualityProfileId", "Name", Model.QualityProfileId), new { @class = "quality" })</td>
|
||||
<td class="checkboxColumn">@Html.CheckBoxFor(m => m.Monitored, new {@class = "seriesCheckbox monitored"})</td>
|
||||
<td class="checkboxColumn">@Html.CheckBoxFor(m => m.SeasonFolder, new {@class = "seriesCheckbox seasonFolder"})</td>
|
||||
<td>@Html.TextBoxFor(m => m.Path)</td>
|
||||
<td>@Html.TextBoxFor(m => m.Path, new { @class = "path" })</td>
|
||||
</tr>
|
||||
}
|
Loading…
Reference in New Issue