mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
[UI Work] Misc UI Fixes and Tweaks
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user