Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/960d738e29196a88ddb82b6c854433daeadb1228
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
128 additions and
88 deletions
@ -34,17 +34,22 @@
. content {
flex : 0 1 100 % ;
overflow : hidden ;
}
. name {
. titleRow {
display : flex ;
font-weight : 300 ;
font-size : 36px ;
}
. artistName {
. titleContainer {
display : flex ;
align-items : flex-end ;
flex : 0 1 auto ;
}
. title {
font-weight : 300 ;
font-size : 20px ;
font-size : 36 px;
}
. year {
@ -52,6 +57,14 @@
color : $ disabledColor ;
}
. icons {
display : flex ;
align-items : center ;
justify-content : space-between ;
flex : 1 0 auto ;
height : 55px ;
}
. mbLink {
composes : link from '~Components/Link/Link.css' ;
@ -75,3 +88,10 @@
margin-top : 20px ;
text-align : justify ;
}
@ media only screen and ( max-width : $ breakpointMedium ) {
. titleRow {
justify-content : space-between ;
overflow : hidden ;
}
}
@ -111,52 +111,42 @@ class AddNewAlbumSearchResult extends Component {
}
< div className = { styles . content } >
< div className = { styles . name } >
{ title }
{
! ! disambiguation &&
< span className = { styles . year } > ( { disambiguation } ) < / s p a n >
}
{
isExistingAlbum ?
< Icon
className = { styles . alreadyExistsIcon }
name = { icons . CHECK _CIRCLE }
size = { 20 }
title = "Album already in your library"
/ > :
null
}
< Link
className = { styles . mbLink }
to = { ` https://musicbrainz.org/release-group/ ${ foreignAlbumId } ` }
onPress = { this . onMBLinkPress }
>
< Icon
className = { styles . mbLinkIcon }
name = { icons . EXTERNAL _LINK }
size = { 28 }
/ >
< / L i n k >
< / d i v >
< div >
< span className = { styles . artistName } > By : { artist . artistName } < / s p a n >
{
isExistingArtist ?
< div className = { styles . titleRow } >
< div className = { styles . titleContainer } >
< div className = { styles . title } >
{ title }
{
! ! disambiguation &&
< span className = { styles . year } > ( { disambiguation } ) < / s p a n >
}
< / d i v >
< / d i v >
< div className = { styles . icons } >
{
isExistingAlbum ?
< Icon
className = { styles . alreadyExistsIcon }
name = { icons . CHECK _CIRCLE }
size = { 36 }
title = "Already in your library"
/ > :
null
}
< Link
className = { styles . mbLink }
to = { ` https://musicbrainz.org/release-group/ ${ foreignAlbumId } ` }
onPress = { this . onTVDBLinkPress }
>
< Icon
className = { styles . alreadyExistsIcon }
name = { icons . CHECK _CIRCLE }
size = { 15 }
title = "Artist already in your library"
/ > :
null
}
className = { styles . mbLinkIcon }
name = { icons . EXTERNAL _LINK }
size = { 28 }
/ >
< / L i n k >
< / d i v >
< / d i v >
< div >
@ -34,10 +34,20 @@
. content {
flex : 0 1 100 % ;
overflow : hidden ;
}
. name {
. name Row {
display : flex ;
}
. nameContainer {
display : flex ;
align-items : flex-end ;
flex : 0 1 auto ;
}
. name {
font-weight : 300 ;
font-size : 36px ;
}
@ -47,6 +57,14 @@
color : $ disabledColor ;
}
. icons {
display : flex ;
align-items : center ;
justify-content : space-between ;
flex : 1 0 auto ;
height : 55px ;
}
. mbLink {
composes : link from '~Components/Link/Link.css' ;
@ -70,3 +88,10 @@
margin-top : 20px ;
text-align : justify ;
}
@ media only screen and ( max-width : $ breakpointMedium ) {
. titleRow {
justify-content : space-between ;
overflow : hidden ;
}
}
@ -111,44 +111,49 @@ class AddNewArtistSearchResult extends Component {
}
< div className = { styles . content } >
< div className = { styles . name } >
{ artistName }
{
! name . contains ( year ) && year ?
< span className = { styles . year } >
( { year } )
< / s p a n > :
null
}
{
! ! disambiguation &&
< span className = { styles . year } > ( { disambiguation } ) < / s p a n >
}
{
isExistingArtist ?
< div className = { styles . nameRow } >
< div className = { styles . nameContainer } >
< div className = { styles . name } >
{ artistName }
{
! artistName . contains ( year ) && year ?
< span className = { styles . year } >
( { year } )
< / s p a n > :
null
}
{
! ! disambiguation &&
< span className = { styles . year } > ( { disambiguation } ) < / s p a n >
}
< / d i v >
< / d i v >
< div className = { styles . icons } >
{
isExistingArtist ?
< Icon
className = { styles . alreadyExistsIcon }
name = { icons . CHECK _CIRCLE }
size = { 36 }
title = "Already in your library"
/ > :
null
}
< Link
className = { styles . mbLink }
to = { ` https://musicbrainz.org/artist/ ${ foreignArtistId } ` }
onPress = { this . onMBLinkPress }
>
< Icon
className = { styles . alreadyExistsIcon }
name = { icons . CHECK _CIRCLE }
size = { 36 }
title = "Already in your library"
/ > :
null
}
< Link
className = { styles . mbLink }
to = { ` https://musicbrainz.org/artist/ ${ foreignArtistId } ` }
onPress = { this . onMBLinkPress }
>
< Icon
className = { styles . mbLinkIcon }
name = { icons . EXTERNAL _LINK }
size = { 28 }
/ >
< / L i n k >
className = { styles . mbLinkIcon }
name = { icons . EXTERNAL _LINK }
size = { 28 }
/ >
< / L i n k >
< / d i v >
< / d i v >
< div >