mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 17:57:43 +00:00
popover overflows, overviews no longer capped
This commit is contained in:
parent
651c7c095a
commit
295a624311
4 changed files with 10 additions and 2 deletions
|
@ -114,7 +114,7 @@
|
||||||
|
|
||||||
.fc-view {
|
.fc-view {
|
||||||
width: 100%; /* needed for view switching (when view is absolute) */
|
width: 100%; /* needed for view switching (when view is absolute) */
|
||||||
overflow: hidden;
|
/*overflow: hidden;*/
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -853,7 +853,9 @@ ul.stat-list {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ============== popover ============== */
|
/* ============== popover ============== */
|
||||||
|
.popover {
|
||||||
|
width: 276px;
|
||||||
|
}
|
||||||
.popover-title {
|
.popover-title {
|
||||||
white-space: nowrap;
|
|
||||||
text-transform: none;
|
text-transform: none;
|
||||||
}
|
}
|
|
@ -2,6 +2,7 @@
|
||||||
using System;
|
using System;
|
||||||
using NzbDrone.Core.Datastore;
|
using NzbDrone.Core.Datastore;
|
||||||
using NzbDrone.Core.Model;
|
using NzbDrone.Core.Model;
|
||||||
|
using Sqo.Attributes;
|
||||||
|
|
||||||
namespace NzbDrone.Core.Tv
|
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)
|
//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; }
|
public DateTime? AirDate { get; set; }
|
||||||
|
|
||||||
|
[Text]
|
||||||
public string Overview { get; set; }
|
public string Overview { get; set; }
|
||||||
|
|
||||||
public Boolean Ignored { get; set; }
|
public Boolean Ignored { get; set; }
|
||||||
public PostDownloadStatusType PostDownloadStatus { get; set; }
|
public PostDownloadStatusType PostDownloadStatus { get; set; }
|
||||||
public int AbsoluteEpisodeNumber { get; set; }
|
public int AbsoluteEpisodeNumber { get; set; }
|
||||||
|
|
|
@ -4,6 +4,7 @@ using NzbDrone.Core.Datastore;
|
||||||
using NzbDrone.Core.Model;
|
using NzbDrone.Core.Model;
|
||||||
using NzbDrone.Core.Qualities;
|
using NzbDrone.Core.Qualities;
|
||||||
using PetaPoco;
|
using PetaPoco;
|
||||||
|
using Sqo.Attributes;
|
||||||
|
|
||||||
namespace NzbDrone.Core.Tv
|
namespace NzbDrone.Core.Tv
|
||||||
{
|
{
|
||||||
|
@ -27,6 +28,7 @@ namespace NzbDrone.Core.Tv
|
||||||
|
|
||||||
public string Status { get; set; }
|
public string Status { get; set; }
|
||||||
|
|
||||||
|
[Text]
|
||||||
public string Overview { get; set; }
|
public string Overview { get; set; }
|
||||||
|
|
||||||
//public DayOfWeek? AirsDayOfWeek { get; set; }
|
//public DayOfWeek? AirsDayOfWeek { get; set; }
|
||||||
|
|
Loading…
Reference in a new issue