mirror of https://github.com/Sonarr/Sonarr
popover overflows, overviews no longer capped
This commit is contained in:
parent
651c7c095a
commit
295a624311
|
@ -114,7 +114,7 @@
|
|||
|
||||
.fc-view {
|
||||
width: 100%; /* needed for view switching (when view is absolute) */
|
||||
overflow: hidden;
|
||||
/*overflow: hidden;*/
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -853,7 +853,9 @@ ul.stat-list {
|
|||
}
|
||||
|
||||
/* ============== popover ============== */
|
||||
.popover {
|
||||
width: 276px;
|
||||
}
|
||||
.popover-title {
|
||||
white-space: nowrap;
|
||||
text-transform: none;
|
||||
}
|
|
@ -2,6 +2,7 @@
|
|||
using System;
|
||||
using NzbDrone.Core.Datastore;
|
||||
using NzbDrone.Core.Model;
|
||||
using Sqo.Attributes;
|
||||
|
||||
namespace NzbDrone.Core.Tv
|
||||
{
|
||||
|
@ -16,7 +17,10 @@ namespace NzbDrone.Core.Tv
|
|||
|
||||
//Todo: Since we're displaying next airing relative to the user's timezone we may want to store this as UTC (with airtime + UTC offset)
|
||||
public DateTime? AirDate { get; set; }
|
||||
|
||||
[Text]
|
||||
public string Overview { get; set; }
|
||||
|
||||
public Boolean Ignored { get; set; }
|
||||
public PostDownloadStatusType PostDownloadStatus { get; set; }
|
||||
public int AbsoluteEpisodeNumber { get; set; }
|
||||
|
|
|
@ -4,6 +4,7 @@ using NzbDrone.Core.Datastore;
|
|||
using NzbDrone.Core.Model;
|
||||
using NzbDrone.Core.Qualities;
|
||||
using PetaPoco;
|
||||
using Sqo.Attributes;
|
||||
|
||||
namespace NzbDrone.Core.Tv
|
||||
{
|
||||
|
@ -27,6 +28,7 @@ namespace NzbDrone.Core.Tv
|
|||
|
||||
public string Status { get; set; }
|
||||
|
||||
[Text]
|
||||
public string Overview { get; set; }
|
||||
|
||||
//public DayOfWeek? AirsDayOfWeek { get; set; }
|
||||
|
|
Loading…
Reference in New Issue