diff --git a/src/assets/css/librarybrowser.scss b/src/assets/css/librarybrowser.scss index 2fb4d3759..691e50bf8 100644 --- a/src/assets/css/librarybrowser.scss +++ b/src/assets/css/librarybrowser.scss @@ -627,10 +627,15 @@ .subtitle { margin: 0.15em 0 0.2em; + + // Leave room for a focused button + margin-left: -1em; + padding-left: 1em; } .layout-mobile .subtitle { margin: 0.2em 0 0.2em; + padding-left: 0; // Reset padding for focused button since 'margin-left' is 0 } .detailPagePrimaryContainer { diff --git a/src/controllers/itemDetails/index.js b/src/controllers/itemDetails/index.js index c5287093a..fdb242714 100644 --- a/src/controllers/itemDetails/index.js +++ b/src/controllers/itemDetails/index.js @@ -459,7 +459,7 @@ function renderName(item, container, context) { }, { context: context }); - parentNameHtml.push('' + item.SeriesName + ''); + parentNameHtml.push('' + item.SeriesName + ''); } else if (item.IsSeries || item.EpisodeTitle) { parentNameHtml.push(item.Name); } @@ -474,7 +474,7 @@ function renderName(item, container, context) { }, { context: context }); - parentNameHtml.push('' + item.SeriesName + ''); + parentNameHtml.push('' + item.SeriesName + ''); } else if (item.ParentIndexNumber != null && item.Type === 'Episode') { parentRoute = appRouter.getRouteUrl({ Id: item.SeasonId, @@ -485,7 +485,7 @@ function renderName(item, container, context) { }, { context: context }); - parentNameHtml.push('' + item.SeasonName + ''); + parentNameHtml.push('' + item.SeasonName + ''); } else if (item.ParentIndexNumber != null && item.IsSeries) { parentNameHtml.push(item.SeasonName || 'S' + item.ParentIndexNumber); } else if (item.Album && item.AlbumId && (item.Type === 'MusicVideo' || item.Type === 'Audio')) { @@ -498,7 +498,7 @@ function renderName(item, container, context) { }, { context: context }); - parentNameHtml.push('' + item.Album + ''); + parentNameHtml.push('' + item.Album + ''); } else if (item.Album) { parentNameHtml.push(item.Album); } @@ -514,10 +514,10 @@ function renderName(item, container, context) { if (layoutManager.mobile) { html = '