mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
This commit is contained in:
commit
28cc7b40f0
2 changed files with 18 additions and 1 deletions
|
@ -3,11 +3,20 @@
|
|||
background: none!important;
|
||||
}
|
||||
|
||||
.ui-mobile [data-role=page], .ui-page {
|
||||
padding-top: 35px !important;
|
||||
}
|
||||
|
||||
.viewMenuBar {
|
||||
background: #444;
|
||||
background-image: linear-gradient(#444,#2d2d2d);
|
||||
font-size: 13px;
|
||||
font-weight: bold;
|
||||
position: fixed;
|
||||
right: 0;
|
||||
left: 0;
|
||||
z-index: 1030;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.viewMenuLink {
|
||||
|
|
|
@ -81,7 +81,15 @@
|
|||
} else {
|
||||
$("#btnInstallDiv", page).hide();
|
||||
$("#pSelectVersion", page).hide();
|
||||
$("#nonServerMsg", page).html("This plugin must be installed from " + pkg.targetSystem).show();
|
||||
var msg = "This plugin must be installed from ";
|
||||
switch (pkg.targetSystem) {
|
||||
case "MBClassic":
|
||||
msg += "the MBClassic Configurator";
|
||||
break;
|
||||
default:
|
||||
msg += pkg.targetSystem;
|
||||
}
|
||||
$("#nonServerMsg", page).html(msg).show();
|
||||
}
|
||||
|
||||
if (pkg.shortDescription) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue