mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-30 19:02:06 +00:00
Series details styling fixes
Fixed: Empty network won't be shown on series details Fixed: Poster and series title line up on series details
This commit is contained in:
parent
4e6466e10c
commit
bf65807ef3
3 changed files with 14 additions and 2 deletions
|
@ -1,7 +1,11 @@
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-9">
|
<div class="col-md-9">
|
||||||
{{profile profileId}}
|
{{profile profileId}}
|
||||||
|
|
||||||
|
{{#if network}}
|
||||||
<span class="label label-info">{{network}}</span>
|
<span class="label label-info">{{network}}</span>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
<span class="label label-info">{{runtime}} minutes</span>
|
<span class="label label-info">{{runtime}} minutes</span>
|
||||||
<span class="label label-info">{{path}}</span>
|
<span class="label label-info">{{path}}</span>
|
||||||
<span class="label label-info">{{Bytes sizeOnDisk}}</span>
|
<span class="label label-info">{{Bytes sizeOnDisk}}</span>
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
<div class="row series-page-header">
|
<div class="row series-page-header">
|
||||||
<div class="visible-lg col-lg-2">
|
<div class="visible-lg col-lg-2 poster">
|
||||||
{{poster}}
|
{{poster}}
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-12 col-lg-10">
|
<div class="col-md-12 col-lg-10">
|
||||||
<div>
|
<div>
|
||||||
<h1>
|
<h1 class="header-text">
|
||||||
<i class="x-monitored" title="Toggle monitored state for entire series"/>
|
<i class="x-monitored" title="Toggle monitored state for entire series"/>
|
||||||
{{title}}
|
{{title}}
|
||||||
<div class="series-actions pull-right">
|
<div class="series-actions pull-right">
|
||||||
|
|
|
@ -61,6 +61,14 @@
|
||||||
color : #ffffff;
|
color : #ffffff;
|
||||||
padding : 30px 15px;
|
padding : 30px 15px;
|
||||||
margin : 50px 10px;
|
margin : 50px 10px;
|
||||||
|
|
||||||
|
.poster {
|
||||||
|
margin-top : 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-text {
|
||||||
|
margin-top : 0px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.series-season {
|
.series-season {
|
||||||
|
|
Loading…
Reference in a new issue