diff --git a/src/Ombi/ClientApp/src/app/landingpage/landingpage.component.html b/src/Ombi/ClientApp/src/app/landingpage/landingpage.component.html index 03878033f..298ce4c11 100644 --- a/src/Ombi/ClientApp/src/app/landingpage/landingpage.component.html +++ b/src/Ombi/ClientApp/src/app/landingpage/landingpage.component.html @@ -1,7 +1,7 @@ 
-
+
@@ -11,20 +11,21 @@
-
-
-

Notice

+

 Notice

+
+
+ +

{{ 'LandingPage.OnlineHeading' | translate }}

-

{{ 'LandingPage.PartiallyOnlineHeading' | translate }}

@@ -40,8 +41,8 @@
-
- +
+
diff --git a/src/Ombi/ClientApp/src/app/landingpage/landingpage.component.scss b/src/Ombi/ClientApp/src/app/landingpage/landingpage.component.scss index 8cb255d73..e05400aff 100644 --- a/src/Ombi/ClientApp/src/app/landingpage/landingpage.component.scss +++ b/src/Ombi/ClientApp/src/app/landingpage/landingpage.component.scss @@ -1,4 +1,12 @@ -@media only screen and (max-width: 992px) { + + .small-middle-container{ + margin: auto; + width: 75%; + padding-top: 15%; + } + + +@media only screen and (max-width: 992px) { div.centered { max-height: 100%; overflow-y: auto; @@ -45,4 +53,12 @@ div.bg { p { font-size: 14px !important; +} + +span, b, i, p { + color:white !important; +} + +::ng-deep body { + background-color:#303030 !important; } \ No newline at end of file diff --git a/src/Ombi/ClientApp/src/app/landingpage/landingpage.component.ts b/src/Ombi/ClientApp/src/app/landingpage/landingpage.component.ts index 5ccd0011a..80bba97b2 100644 --- a/src/Ombi/ClientApp/src/app/landingpage/landingpage.component.ts +++ b/src/Ombi/ClientApp/src/app/landingpage/landingpage.component.ts @@ -39,7 +39,7 @@ export class LandingPageComponent implements OnDestroy, OnInit { }); this.timer = setInterval(() => { this.cycleBackground(); - }, 15000); + }, 30000); const base = this.href; if (base.length > 1) { diff --git a/src/Ombi/ClientApp/src/app/settings/emby/emby.component.html b/src/Ombi/ClientApp/src/app/settings/emby/emby.component.html index f45703515..57f1a24e4 100644 --- a/src/Ombi/ClientApp/src/app/settings/emby/emby.component.html +++ b/src/Ombi/ClientApp/src/app/settings/emby/emby.component.html @@ -11,7 +11,7 @@
- Enable + Enable
@@ -90,7 +90,7 @@
- +
diff --git a/src/Ombi/ClientApp/src/app/settings/emby/emby.component.ts b/src/Ombi/ClientApp/src/app/settings/emby/emby.component.ts index 52595d1d3..895beb957 100644 --- a/src/Ombi/ClientApp/src/app/settings/emby/emby.component.ts +++ b/src/Ombi/ClientApp/src/app/settings/emby/emby.component.ts @@ -12,7 +12,7 @@ import {FormControl} from '@angular/forms'; export class EmbyComponent implements OnInit { public settings: IEmbySettings; - public hasDiscovered: boolean; + public hasDiscoveredOrDirty: boolean; selected = new FormControl(0); constructor(private settingsService: SettingsService, @@ -29,12 +29,12 @@ export class EmbyComponent implements OnInit { const result = await this.embyService.getPublicInfo(server).toPromise(); this.settings.isJellyfin = result.isJellyfin; server.name = result.serverName; - this.hasDiscovered = true; + this.hasDiscoveredOrDirty = true; } public addTab(event: MatTabChangeEvent) { const tabName = event.tab.textLabel; - if (tabName == "Add Server"){ + if (tabName == "Add Server"){ if (this.settings.servers == null) { this.settings.servers = []; } @@ -53,6 +53,10 @@ export class EmbyComponent implements OnInit { } } + public toggle() { + this.hasDiscoveredOrDirty = true; + } + public test(server: IEmbyServer) { this.testerService.embyTest(server).subscribe(x => { if (x === true) {