parent
5b98a17873
commit
a1ddcf2b7b
|
@ -14,6 +14,7 @@
|
||||||
&.inverse {
|
&.inverse {
|
||||||
background-color: $themeDarkColor;
|
background-color: $themeDarkColor;
|
||||||
box-shadow: 0 5px 10px $popoverShadowInverseColor;
|
box-shadow: 0 5px 10px $popoverShadowInverseColor;
|
||||||
|
color: $white;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -119,6 +119,13 @@
|
||||||
margin: 5px 10px 5px 0;
|
margin: 5px 10px 5px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.fileCountMessage {
|
||||||
|
padding: 5px;
|
||||||
|
white-space: nowrap;
|
||||||
|
font-weight: 300;
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
.path,
|
.path,
|
||||||
.sizeOnDisk,
|
.sizeOnDisk,
|
||||||
.qualityProfileName,
|
.qualityProfileName,
|
||||||
|
|
|
@ -432,9 +432,10 @@ class SeriesDetails extends Component {
|
||||||
</span>
|
</span>
|
||||||
</Label>
|
</Label>
|
||||||
|
|
||||||
|
<Tooltip
|
||||||
|
anchor={
|
||||||
<Label
|
<Label
|
||||||
className={styles.detailsLabel}
|
className={styles.detailsLabel}
|
||||||
title={episodeFilesCountMessage}
|
|
||||||
size={sizes.LARGE}
|
size={sizes.LARGE}
|
||||||
>
|
>
|
||||||
<Icon
|
<Icon
|
||||||
|
@ -448,6 +449,15 @@ class SeriesDetails extends Component {
|
||||||
}
|
}
|
||||||
</span>
|
</span>
|
||||||
</Label>
|
</Label>
|
||||||
|
}
|
||||||
|
tooltip={
|
||||||
|
<span>
|
||||||
|
{episodeFilesCountMessage}
|
||||||
|
</span>
|
||||||
|
}
|
||||||
|
kind={kinds.INVERSE}
|
||||||
|
position={tooltipPositions.BOTTOM}
|
||||||
|
/>
|
||||||
|
|
||||||
<Label
|
<Label
|
||||||
className={styles.detailsLabel}
|
className={styles.detailsLabel}
|
||||||
|
|
Loading…
Reference in New Issue