1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update stream builder subtitles

This commit is contained in:
Luke Pulverenti 2015-07-30 22:34:15 -04:00
parent a1890b0e4e
commit 1ab41652d5
3 changed files with 15 additions and 5 deletions

View file

@ -364,6 +364,10 @@
display: none !important;
}
.libraryDocument .sidebarLinkNotifications {
display: none !important;
}
.dashboardDocument .lnkMySync {
display: none !important;
}

View file

@ -4,18 +4,19 @@
<title>${TitleNotifications}</title>
</head>
<body>
<div id="notificationsPage" data-role="page" class="page libraryPage noSecondaryNavPage" data-require="scripts/notificationlist,paperbuttonstyle">
<div id="notificationsPage" data-role="page" class="page type-interior" data-require="scripts/notificationlist,paperbuttonstyle">
<div data-role="content">
<div class="content-primary">
<div class="readOnlyContent" style="margin: auto;max-width:900px;">
<div class="readOnlyContent" style="max-width:900px;">
<h1>${TitleNotifications}</h1>
<div class="notificationsList" style="margin-top: 1em;">
</div>
</div>
</div>
</div>
</div>
</body>
</html>

View file

@ -336,6 +336,11 @@
html += '<div class="sidebarDivider"></div>';
html += '<a class="sidebarLink lnkMediaFolder sidebarLinkNotifications" data-itemid="inbox" onclick="return LibraryMenu.onLinkClicked(event, this);" href="notificationlist.html"><iron-icon icon="inbox" class="sidebarLinkIcon"></iron-icon>';
html += Globalize.translate('ButtonInbox');
html += '<div class="btnNotifications"><div class="btnNotificationsInner">0</div></div>';
html += '</a>';
if (user.localUser && showUserAtTop()) {
html += '<a class="sidebarLink lnkMediaFolder lnkMySettings" onclick="return LibraryMenu.onLinkClicked(event, this);" data-itemid="mysync" href="mypreferencesmenu.html?userId=' + user.localUser.Id + '"><iron-icon icon="settings" class="sidebarLinkIcon"></iron-icon><span class="sidebarLinkText">' + Globalize.translate('ButtonSettings') + '</span></a>';
}