
diff --git a/src/Ombi/ClientApp/app/search/moviesearch.component.ts b/src/Ombi/ClientApp/app/search/moviesearch.component.ts
index ec103bf4e..56f30fd76 100644
--- a/src/Ombi/ClientApp/app/search/moviesearch.component.ts
+++ b/src/Ombi/ClientApp/app/search/moviesearch.component.ts
@@ -152,7 +152,7 @@ export class MovieSearchComponent implements OnInit {
val.background = this.sanitizer.
bypassSecurityTrustStyle
- ("linear-gradient(to bottom, rgba(0,0,0,0.6) 0%,rgba(0,0,0,0.6) 100%),url(" + "https://image.tmdb.org/t/p/w1280" + val.backdropPath + ")");
+ ("url(" + "https://image.tmdb.org/t/p/w1280" + val.backdropPath + ")");
this.searchService.getMovieInformation(val.id)
.subscribe(m => {
this.updateItem(val, m);
diff --git a/src/Ombi/ClientApp/app/search/tvsearch.component.html b/src/Ombi/ClientApp/app/search/tvsearch.component.html
index e9a9df839..cf225e282 100644
--- a/src/Ombi/ClientApp/app/search/tvsearch.component.html
+++ b/src/Ombi/ClientApp/app/search/tvsearch.component.html
@@ -50,7 +50,10 @@
-
+
+
+
+
![poster]()
diff --git a/src/Ombi/ClientApp/app/search/tvsearch.component.ts b/src/Ombi/ClientApp/app/search/tvsearch.component.ts
index d1d9e8837..6f05f2b51 100644
--- a/src/Ombi/ClientApp/app/search/tvsearch.component.ts
+++ b/src/Ombi/ClientApp/app/search/tvsearch.component.ts
@@ -134,7 +134,7 @@ export class TvSearchComponent implements OnInit {
val.data.background = this.sanitizer.
bypassSecurityTrustStyle
- ("linear-gradient(to bottom, rgba(0,0,0,0.6) 0%,rgba(0,0,0,0.6) 100%),url(" + x + ")");
+ ("url(" + x + ")");
});
this.searchService.getShowInformationTreeNode(val.data.id)
.subscribe(x => {
diff --git a/src/Ombi/ClientApp/styles/Themes/plex.scss b/src/Ombi/ClientApp/styles/Themes/plex.scss
index bd9659c58..6dfb13db5 100644
--- a/src/Ombi/ClientApp/styles/Themes/plex.scss
+++ b/src/Ombi/ClientApp/styles/Themes/plex.scss
@@ -335,3 +335,14 @@ button.list-group-item:focus {
.ui-widget-overlay .ui-sidebar-mask {
background: black;
}
+
+.myBg {
+ width: 100%;
+ height: 100%;
+ position: absolute;
+ }
+ .tint {
+ width: 100%;
+ height: 100%;
+ position: absolute;
+ }
\ No newline at end of file