Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/c7d17598e232111d947ca2990f062f92ef775abd
You should set ROOT_URL correctly, otherwise the web may not work correctly.
7 changed files with
27 additions and
6 deletions
@ -58,6 +58,10 @@
composes : downloaded from 'Calendar/Events/CalendarEvent.css' ;
}
. partial {
composes : partial from 'Calendar/Events/CalendarEvent.css' ;
}
. downloading {
composes : downloading from 'Calendar/Events/CalendarEvent.css' ;
}
@ -41,6 +41,10 @@
border-left-color : $ successColor ;
}
. partial {
border-left-color : $ yellow ;
}
. downloading {
border-left-color : $ purple ;
}
@ -62,7 +66,7 @@
}
. unreleased {
border-left-color : $ primaryColor ;
border-left-color : $ blue ;
& : global ( . colorImpaired ) {
background : repeating-linear-gradient ( 90deg , transparent , transparent 5px , # eee 5px , # eee 10px ) ;
@ -122,9 +122,6 @@ CalendarEvent.propTypes = {
title : PropTypes . string . isRequired ,
foreignAlbumId : PropTypes . string . isRequired ,
statistics : PropTypes . object . isRequired ,
// seasonNumber: PropTypes.number.isRequired,
// episodeNumber: PropTypes.number.isRequired,
// absoluteEpisodeNumber: PropTypes.number,
releaseDate : PropTypes . string . isRequired ,
monitored : PropTypes . bool . isRequired ,
grabbed : PropTypes . bool ,
@ -28,8 +28,8 @@ function Legend({ colorImpairedMode }) {
/ >
< LegendItem
status = " missing "
tooltip = " Track file has not been foun d"
status = " partial "
tooltip = " Album was partially downloade d"
colorImpairedMode = { colorImpairedMode }
/ >
< / d i v >
@ -40,6 +40,12 @@ function Legend({ colorImpairedMode }) {
tooltip = "Album is unmonitored"
colorImpairedMode = { colorImpairedMode }
/ >
< LegendItem
status = "missing"
tooltip = "Track file has not been found"
colorImpairedMode = { colorImpairedMode }
/ >
< / d i v >
< / d i v >
) ;
@ -16,6 +16,10 @@
composes : downloaded from 'Calendar/Events/CalendarEvent.css' ;
}
. partial {
composes : partial from 'Calendar/Events/CalendarEvent.css' ;
}
. downloading {
composes : downloading from 'Calendar/Events/CalendarEvent.css' ;
}
@ -8,6 +8,10 @@ function getStatusStyle(episodeNumber, downloading, startTime, isMonitored, perc
return 'downloaded' ;
}
if ( percentOfTracks > 0 ) {
return 'partial' ;
}
if ( downloading ) {
return 'downloading' ;
}
@ -6,6 +6,8 @@ module.exports = {
dimColor : '#555' ,
black : '#000' ,
white : '#fff' ,
blue : '#06f' ,
yellow : '#FFA500' ,
primaryColor : '#0b8750' ,
selectedColor : '#f9be03' ,
successColor : '#27c24c' ,