Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/87800d80c866f9c895d4bc74d39d0ee40984f1a2?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
79 additions and
19 deletions
@ -3,12 +3,15 @@
< div class = "small-middle-container" >
< div class = "small-middle-container" >
< div class = "row" >
< div class = "row" >
< div class = "col-md-push-3 col-md-6 ">
< div class = "col-md-push-3 col-md-6 logo-container ">
< div * ngIf = "customizationSettings.logo" >
< div * ngIf = "customizationSettings.logo" >
< img [ src ] = " customizationSettings . logo " style = "width:100% "/ >
< img class = "logo-img" [ src ] = " customizationSettings . logo "/ >
< / div >
< / div >
< div * ngIf = "!customizationSettings.logo" >
< div * ngIf = "!customizationSettings.logo && customizationSettings.applicationName" class = "logo" >
< img src = "{{baseUrl}}/images/logo.png" style = "width:100%" / >
{{customizationSettings.applicationName}}
< / div >
< div * ngIf = "!customizationSettings.logo && !customizationSettings.applicationName" class = "logo" >
OMBI
< / div >
< / div >
< / div >
< / div >
< div class = "col-md-4 col-md-push-3 vcenter" >
< div class = "col-md-4 col-md-push-3 vcenter" >
@ -39,10 +42,10 @@
< span [ translate ] = " ' LandingPage . OfflineParagraph ' " > < / span >
< span [ translate ] = " ' LandingPage . OfflineParagraph ' " > < / span >
< p [ translate ] = " ' LandingPage . CheckPageForUpdates ' " > < / p >
< p [ translate ] = " ' LandingPage . CheckPageForUpdates ' " > < / p >
< / div >
< / div >
< div class = "button-continue" >
< button id = "continue" mat-raised-button [ routerLink ] = " [ ' / login ' , ' true ' ] " color = "accent" type = "submit" data-cy = "continue" > {{ 'Common.ContinueButton' | translate }}< / button >
< / div >
< / div >
< / div >
< / div >
< div class = "col-md-3 offset-md-6 vcenter" >
< button id = "continue" mat-raised-button [ routerLink ] = " [ ' / login ' , ' true ' ] " color = "accent" type = "submit" data-cy = "continue" > {{ 'Common.ContinueButton' | translate }}< / button >
< / div >
< / div >
< / div >
< / div >
< / div >
< / div >
@ -1,10 +1,14 @@
@ import " ~styles/variables.scss " ;
. small-middle-container {
. small-middle-container {
margin : auto ;
height : 100 vh ;
width : 75 % ;
padding-top : 15 % ;
}
}
. row {
display : flex ;
align-items : center ;
justify-content : center ;
height : 100 vh ;
}
@media only screen and ( max-width : 992 px ) {
@media only screen and ( max-width : 992 px ) {
div . centered {
div . centered {
@ -32,12 +36,6 @@ div.bg {
position : fixed ;
position : fixed ;
}
}
. vcenter {
display : inline-block ;
vertical-align : middle ;
float : none ;
}
. online {
. online {
color : lightgreen ;
color : lightgreen ;
}
}
@ -62,3 +60,40 @@ span, b, i, p {
: : ng-deep body {
: : ng-deep body {
background-color : #303030 !important ;
background-color : #303030 !important ;
}
}
. logo {
font : 700 6 em ' Montserrat ' , sans-serif ;
text-align : center ;
text-transform : uppercase ;
color : $ombi-active ;
padding : 40 px 20 px ;
white-space : normal ;
}
@media ( max-width : 1000 px ) {
. logo {
font : 700 5 em ' Montserrat ' , sans-serif ;
}
}
@media ( max-width : 800 px ) {
. logo {
font : 700 4 em ' Montserrat ' , sans-serif ;
}
}
@media ( max-width : 767 px ) {
. vcenter {
text-align : center ;
}
}
. logo-img {
max-width : 420 px ;
max-height : 420 px ;
}
. logo-container {
display : flex ;
justify-content : center ;
}
@ -8,7 +8,7 @@
< mat-card class = "mat-elevation-z8 top-margin login-card" >
< mat-card class = "mat-elevation-z8 top-margin login-card" >
< H1 * ngIf = "!customizationSettings.logo && !customizationSettings.applicationName" class = "login_logo" > OMBI< / H1 >
< H1 * ngIf = "!customizationSettings.logo && !customizationSettings.applicationName" class = "login_logo" > OMBI< / H1 >
< H1 * ngIf = "customizationSettings.applicationName && !customizationSettings.logo" [ ngClass ] = " { ' bigText ' : customizationSettings . applicationName . length > = 7 & & customizationSettings.applicationName.length < 14 , ' hugeText ' : customizationSettings . applicationName . length > = 14 }" class="login_logo custom">{{customizationSettings.applicationName}}< / H1 >
< H1 * ngIf = "customizationSettings.applicationName && !customizationSettings.logo" [ ngClass ] = " { ' bigText ' : customizationSettings . applicationName . length > = 7 & & customizationSettings.applicationName.length < 14 , ' hugeText ' : customizationSettings . applicationName . length > = 14 }" class="login_logo custom">{{customizationSettings.applicationName}}< / H1 >
< img mat-card-image * ngIf = "customizationSettings.logo" [ src ] = " customizationSettings . logo " >
< img mat-card-image * ngIf = "customizationSettings.logo" [ src ] = " customizationSettings . logo " class = "logo-img" >
< mat-card-content id = "login-box" * ngIf = "!authenticationSettings.enableOAuth || loginWithOmbi" >
< mat-card-content id = "login-box" * ngIf = "!authenticationSettings.enableOAuth || loginWithOmbi" >
< form * ngIf = "authenticationSettings" class = "form-signin" novalidate [ formGroup ] = " form " ( ngSubmit ) = " onSubmit ( form ) " >
< form * ngIf = "authenticationSettings" class = "form-signin" novalidate [ formGroup ] = " form " ( ngSubmit ) = " onSubmit ( form ) " >
@ -210,6 +210,11 @@ div.bg {
margin-bottom : 70 px ;
margin-bottom : 70 px ;
}
}
. logo-img {
max-width : 420 px ;
max-height : 420 px ;
}
@media ( max-width : 700 px ) {
@media ( max-width : 700 px ) {
. login-card H1 . login_logo {
. login-card H1 . login_logo {
font-size : 20 vw ;
font-size : 20 vw ;
@ -174,6 +174,23 @@
}
}
}
}
@media ( max-width : 600 px ) {
. sidenav-container . sidenav {
. application-name {
font-size : 2 em ;
max-width : 200 px ;
}
. mat-list-item {
width : 14 rem ;
padding : 10 px 0 px ;
}
. active-list-item {
width : 14 rem ;
padding : 10 px 0 px ;
}
}
}
. outer-profile . profile-img-container {
. outer-profile . profile-img-container {
background : inherit ;
background : inherit ;
}
}