mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-30 11:48:26 -07:00
[UI Work] Misc UI Fixes and Tweaks
This commit is contained in:
parent
2a6decdc4c
commit
44cc642ad4
80 changed files with 267 additions and 349 deletions
|
@ -70,8 +70,8 @@
|
|||
composes: missing from 'Calendar/Events/CalendarEvent.css';
|
||||
}
|
||||
|
||||
.unaired {
|
||||
composes: unaired from 'Calendar/Events/CalendarEvent.css';
|
||||
.unreleased {
|
||||
composes: unreleased from 'Calendar/Events/CalendarEvent.css';
|
||||
}
|
||||
|
||||
@media only screen and (max-width: $breakpointSmall) {
|
||||
|
|
|
@ -123,7 +123,7 @@ class AgendaEvent extends Component {
|
|||
episodeEntity={episodeEntities.CALENDAR}
|
||||
artistId={artist.id}
|
||||
episodeTitle={title}
|
||||
showOpenSeriesButton={true}
|
||||
showOpenArtistButton={true}
|
||||
onModalClose={this.onDetailsModalClose}
|
||||
/>
|
||||
</div>
|
||||
|
|
|
@ -61,7 +61,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
.unaired {
|
||||
.unreleased {
|
||||
border-left-color: $primaryColor;
|
||||
|
||||
&:global(.colorImpaired) {
|
||||
|
|
|
@ -116,7 +116,7 @@ class CalendarEvent extends Component {
|
|||
episodeEntity={episodeEntities.CALENDAR}
|
||||
artistId={artist.id}
|
||||
episodeTitle={title}
|
||||
showOpenSeriesButton={true}
|
||||
showOpenArtistButton={true}
|
||||
onModalClose={this.onDetailsModalClose}
|
||||
/>
|
||||
</div>
|
||||
|
|
|
@ -22,7 +22,7 @@ function Legend({ colorImpairedMode }) {
|
|||
|
||||
<div>
|
||||
<LegendItem
|
||||
status="unaired"
|
||||
status="unreleased"
|
||||
tooltip="Album hasn't released yet"
|
||||
colorImpairedMode={colorImpairedMode}
|
||||
/>
|
||||
|
|
|
@ -32,6 +32,6 @@
|
|||
composes: missing from 'Calendar/Events/CalendarEvent.css';
|
||||
}
|
||||
|
||||
.unaired {
|
||||
composes: unaired from 'Calendar/Events/CalendarEvent.css';
|
||||
.unreleased {
|
||||
composes: unreleased from 'Calendar/Events/CalendarEvent.css';
|
||||
}
|
||||
|
|
|
@ -19,7 +19,7 @@ function getStatusStyle(episodeNumber, downloading, startTime, isMonitored) {
|
|||
return 'missing';
|
||||
}
|
||||
|
||||
return 'unaired';
|
||||
return 'unreleased';
|
||||
}
|
||||
|
||||
export default getStatusStyle;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue