mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-02 13:14:58 +00:00
Couple touch ups
This commit is contained in:
parent
3d23ac9234
commit
d9b7dd257e
2 changed files with 8 additions and 3 deletions
|
@ -105,7 +105,7 @@ namespace NzbDrone.Core.Organizer
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var episodeFormat = GetSeasonEpisodePattern(pattern);
|
var episodeFormat = GetEpisodeFormat(pattern);
|
||||||
|
|
||||||
if (episodeFormat != null)
|
if (episodeFormat != null)
|
||||||
{
|
{
|
||||||
|
@ -246,7 +246,7 @@ namespace NzbDrone.Core.Organizer
|
||||||
return value.ToString(split[1]);
|
return value.ToString(split[1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
private EpisodeFormat GetSeasonEpisodePattern(string pattern)
|
private EpisodeFormat GetEpisodeFormat(string pattern)
|
||||||
{
|
{
|
||||||
return _patternCache.Get(pattern, () =>
|
return _patternCache.Get(pattern, () =>
|
||||||
{
|
{
|
||||||
|
|
|
@ -18,9 +18,14 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn {
|
.btn {
|
||||||
.buttonBackground(@btnDangerBackground, @btnDangerBackgroundHighlight);
|
.buttonBackground(@btnBackground, @btnBackgroundHighlight);
|
||||||
|
color: #333333;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btn:hover {
|
||||||
|
color: #333333;
|
||||||
|
}
|
||||||
|
|
||||||
input:first-of-type:checked ~ .btn {
|
input:first-of-type:checked ~ .btn {
|
||||||
.buttonBackground(@btnPrimaryBackground, @btnPrimaryBackgroundHighlight);
|
.buttonBackground(@btnPrimaryBackground, @btnPrimaryBackgroundHighlight);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue