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

update tabs

This commit is contained in:
Luke Pulverenti 2016-09-01 16:21:55 -04:00
parent a0fac36101
commit 4e2c7058ca
4 changed files with 7 additions and 10 deletions

View file

@ -16,7 +16,8 @@
left: 0;
right: 0;
bottom: 0;
z-index: 1000;
/* If this is raised, make sure it does not overlap bottom footer */
z-index: 1;
margin: 0 !important;
width: 100% !important;
/* Page needs to supply padding */

View file

@ -249,7 +249,7 @@
var viewTabs = view.querySelector('.libraryViewNav');
libraryBrowser.configurePaperLibraryTabs(view, viewTabs, view.querySelectorAll('.pageTabContent'), [0, 1, 2, 3]);
libraryBrowser.configurePaperLibraryTabs(view, viewTabs, view.querySelectorAll('.pageTabContent'), [0, 1, 2, 3], AppInfo.enableHomeTabs);
var tabControllers = [];
var renderedTabs = [];

View file

@ -150,9 +150,9 @@
});
},
configurePaperLibraryTabs: function (ownerpage, tabs, panels, animateTabs) {
configurePaperLibraryTabs: function (ownerpage, tabs, panels, animateTabs, enableSwipe) {
if (!browser.safari) {
if (!browser.safari && enableSwipe !== false) {
LibraryBrowser.configureSwipeTabs(ownerpage, tabs);
}

View file

@ -143,14 +143,10 @@ div.dialogHeader {
}
.ui-body-b div.formDialogHeader {
background-color: #101010;
background-color: #222326;
}
.formDialogHeader button {
margin-top: 0;
margin-bottom: 0;
}
.formDialog.background-theme-b {
background-color: #181818;
}