mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-25 01:06:30 +00:00
Fixed editing on Series Grid.
This commit is contained in:
parent
8bfa34f23a
commit
3a1727595e
2 changed files with 13 additions and 5 deletions
|
@ -4,13 +4,15 @@
|
||||||
Layout = null;
|
Layout = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@section HeaderContent
|
<style>
|
||||||
{
|
.settingsForm
|
||||||
@Html.IncludeCss("Settings.css")
|
{
|
||||||
}
|
overflow: auto;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
<div id="stylized" style="border-color: transparent;">
|
<div id="stylized" style="border-color: transparent;">
|
||||||
<div class="settingsForm clearfix">
|
<div class="settingsForm">
|
||||||
@Html.HiddenFor(m => m.SeriesId)
|
@Html.HiddenFor(m => m.SeriesId)
|
||||||
<label class="labelClass">@Html.LabelFor(m => m.Monitored)
|
<label class="labelClass">@Html.LabelFor(m => m.Monitored)
|
||||||
<span class="small">@Html.DescriptionFor(m => m.Monitored)</span>
|
<span class="small">@Html.DescriptionFor(m => m.Monitored)</span>
|
||||||
|
|
|
@ -1,6 +1,12 @@
|
||||||
|
@using NzbDrone.Web.Helpers
|
||||||
@using NzbDrone.Web.Models;
|
@using NzbDrone.Web.Models;
|
||||||
@model IEnumerable<NzbDrone.Core.Repository.Series>
|
@model IEnumerable<NzbDrone.Core.Repository.Series>
|
||||||
@{ViewBag.Title = "NzbDrone";}
|
@{ViewBag.Title = "NzbDrone";}
|
||||||
|
|
||||||
|
@section HeaderContent
|
||||||
|
{
|
||||||
|
@Html.IncludeCss("Settings.css")
|
||||||
|
}
|
||||||
<style>
|
<style>
|
||||||
/* progress bar container */
|
/* progress bar container */
|
||||||
.progressbar
|
.progressbar
|
||||||
|
|
Loading…
Reference in a new issue