1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-25 22:46:31 -04:00

New: Added Scene Info to Interactive Search results to show more about the applied scene/TheXEM mappings

This commit is contained in:
Taloth Saldono
2021-01-12 17:59:12 +01:00
parent dcda03da4a
commit 5668152d6f
19 changed files with 490 additions and 42 deletions
@@ -0,0 +1,66 @@
.container {
margin: 2px;
border: 1px solid;
border-radius: 2px;
padding: 0 2px;
cursor: default;
font-size: 12px;
white-space: nowrap;
}
.messages {
margin-top: 15px;
}
.descriptionList {
composes: descriptionList from '~Components/DescriptionList/DescriptionList.css';
margin-right: 10px;
}
.title {
composes: title from '~Components/DescriptionList/DescriptionListItemTitle.css';
width: 80px;
}
.description {
composes: title from '~Components/DescriptionList/DescriptionListItemDescription.css';
margin-left: 100px;
}
.levelMixed {
color: $dangerColor;
border-color: $dangerColor;
}
.levelUnknown {
color: $warningColor;
border-color: $warningColor;
}
.levelMapped {
color: $textColor;
border-color: $textColor;
}
.levelNormal {
color: $textColor;
border-color: $textColor;
}
.levelNone {
opacity: 0.2;
color: $textColor;
border-color: $textColor;
&:hover {
opacity: 1.0;
}
}
.levelNotRequested {
color: $dangerColor;
border-color: $dangerColor;
}