mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix one pixel issue on detials and add fixme
This commit is contained in:
parent
8a69092106
commit
7f019dfffb
2 changed files with 2 additions and 2 deletions
|
@ -449,7 +449,6 @@
|
||||||
content: "";
|
content: "";
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: #000000ad;
|
|
||||||
background: rgba(0, 0, 0, 0.65);
|
background: rgba(0, 0, 0, 0.65);
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
@ -898,7 +897,7 @@ div.itemDetailGalleryLink.defaultCardBackground {
|
||||||
|
|
||||||
.layout-desktop .noBackdrop .detailPageWrapperContainer,
|
.layout-desktop .noBackdrop .detailPageWrapperContainer,
|
||||||
.layout-tv .noBackdrop .detailPageWrapperContainer {
|
.layout-tv .noBackdrop .detailPageWrapperContainer {
|
||||||
margin-top: 4em;
|
margin-top: 3.8em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mediaInfoStream {
|
.mediaInfoStream {
|
||||||
|
|
|
@ -516,6 +516,7 @@ define(["loading", "appRouter", "layoutManager", "connectionManager", "userSetti
|
||||||
}
|
}
|
||||||
|
|
||||||
if ("Person" === item.Type) {
|
if ("Person" === item.Type) {
|
||||||
|
// FIXME: This hides the backdrop on all persons to fix a margin issue. Ideally, a proper fix should be made.
|
||||||
page.classList.add('noBackdrop');
|
page.classList.add('noBackdrop');
|
||||||
itemBackdropElement.classList.add("personBackdrop");
|
itemBackdropElement.classList.add("personBackdrop");
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue