[UI Work] Misc UI Fixes and Tweaks

This commit is contained in:
Qstick 2017-09-16 16:22:06 -04:00
parent 2a6decdc4c
commit 44cc642ad4
80 changed files with 267 additions and 349 deletions

View file

@ -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) {

View file

@ -123,7 +123,7 @@ class AgendaEvent extends Component {
episodeEntity={episodeEntities.CALENDAR}
artistId={artist.id}
episodeTitle={title}
showOpenSeriesButton={true}
showOpenArtistButton={true}
onModalClose={this.onDetailsModalClose}
/>
</div>

View file

@ -61,7 +61,7 @@
}
}
.unaired {
.unreleased {
border-left-color: $primaryColor;
&:global(.colorImpaired) {

View file

@ -116,7 +116,7 @@ class CalendarEvent extends Component {
episodeEntity={episodeEntities.CALENDAR}
artistId={artist.id}
episodeTitle={title}
showOpenSeriesButton={true}
showOpenArtistButton={true}
onModalClose={this.onDetailsModalClose}
/>
</div>

View file

@ -22,7 +22,7 @@ function Legend({ colorImpairedMode }) {
<div>
<LegendItem
status="unaired"
status="unreleased"
tooltip="Album hasn't released yet"
colorImpairedMode={colorImpairedMode}
/>

View file

@ -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';
}

View file

@ -19,7 +19,7 @@ function getStatusStyle(episodeNumber, downloading, startTime, isMonitored) {
return 'missing';
}
return 'unaired';
return 'unreleased';
}
export default getStatusStyle;