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

support channels with dlna

This commit is contained in:
Luke Pulverenti 2014-07-29 23:31:35 -04:00
parent b89707f7b9
commit 27cc543b5f
13 changed files with 20 additions and 34 deletions

View file

@ -379,7 +379,7 @@ a.itemTag:hover {
.itemBackdrop {
background-size: cover;
background-position: center 13%;
background-position: center 15%;
background-repeat: no-repeat;
height: 600px;
position: relative;
@ -664,13 +664,6 @@ a.itemTag:hover {
}
}
@media all and (min-width: 1000px) {
.itemBackdrop {
background-size: 100% auto;
}
}
@media all and (min-width: 750px) {
.detailPageContent {
max-width: 900px;

View file

@ -432,7 +432,7 @@ h1 .imageLink {
}
.content-primary {
padding: 80px 0 3em 0;
padding: 80px 15px 3em 0;
margin: 0 0 0 260px;
}

View file

@ -13,7 +13,7 @@
<a href="#" data-role="button" class="ui-btn-active">${TabDashboard}</a>
<a href="dashboardgeneral.html" data-role="button">${TabSettings}</a>
<a href="serversecurity.html" data-role="button">${TabSecurity}</a>
<a href="dashboardsync.html" data-role="button">${TabSync}</a>
<!--<a href="dashboardsync.html" data-role="button">${TabSync}</a>-->
</div>
<div class="dashboardContent">
<div class="readOnlyContent dashboardHomeLeftColumn">

View file

@ -13,7 +13,7 @@
<a href="dashboard.html" data-role="button">${TabDashboard}</a>
<a href="#" data-role="button" class="ui-btn-active">${TabSettings}</a>
<a href="serversecurity.html" data-role="button">${TabSecurity}</a>
<a href="dashboardsync.html" data-role="button">${TabSync}</a>
<!--<a href="dashboardsync.html" data-role="button">${TabSync}</a>-->
</div>
<form class="dashboardGeneralForm">

View file

@ -12,6 +12,7 @@
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
<a href="advanced.html" data-role="button">${TabGeneral}</a>
<a href="#" data-role="button" class="ui-btn-active">${TabNotifications}</a>
<a href="scheduledtasks.html" data-role="button">${TabScheduledTasks}</a>
<a href="encodingsettings.html" data-role="button">${TabTranscoding}</a>
</div>

View file

@ -63,12 +63,7 @@
var port = systemInfo.HttpServerPortNumber;
if (port == systemInfo.WebSocketPortNumber) {
$('#ports', page).html(Globalize.translate('LabelRunningOnPort').replace('{0}', '<b>' + port + '</b>'));
} else {
$('#ports', page).html(Globalize.translate('LabelRunningOnPorts').replace('{0}', '<b>' + port + '</b>').replace('{1}', '<b>' + systemInfo.WebSocketPortNumber + '</b>'));
}
if (systemInfo.CanSelfRestart) {
$('.btnRestartContainer', page).removeClass('hide');

View file

@ -90,7 +90,10 @@
Dashboard.getCurrentUser().done(function (user) {
if (user.Configuration.EnableContentDeletion &&
if (item.Type == 'BoxSet') {
$('#fldDelete', page).show();
}
else if (user.Configuration.EnableContentDeletion &&
item.Type != "TvChannel" &&
item.Type != "Genre" &&
item.Type != "Studio" &&

View file

@ -133,9 +133,11 @@
html += '<div class="cardPadder"></div>';
html += '<a class="cardContent" href="#" data-ajax="false" data-haspw="' + user.HasPassword + '" data-username="' + user.Name + '" data-userid="' + user.Id + '">';
var imgUrl;
if (user.PrimaryImageTag) {
var imgUrl = ApiClient.getUserImageUrl(user.Id, {
imgUrl = ApiClient.getUserImageUrl(user.Id, {
width: 300,
tag: user.PrimaryImageTag,
type: "Primary"
@ -147,7 +149,9 @@
var background = LibraryBrowser.getMetroColor(user.Id);
html += '<div class="cardImage" style="background-color:' + background + ';"></div>';
imgUrl = 'css/images/logindefault.png';
html += '<div class="cardImage" style="background-image:url(\'' + imgUrl + '\');background-color:' + background + ';"></div>';
}
html += '</a>';

View file

@ -222,12 +222,10 @@
{ name: "Music", value: "music" },
{ name: "TV shows", value: "tvshows" },
{ name: "Books*", value: "books" },
{ name: "Collections", value: "boxsets" },
{ name: "Games*", value: "games" },
{ name: "Home videos", value: "homevideos" },
{ name: "Music videos", value: "musicvideos" },
{ name: "Photos", value: "photos" },
//{ name: "Trailers", value: "trailers" },
{ name: "Adult videos", value: "adultvideos" },
{ name: "Mixed movies & tv", value: "mixed" }
];

View file

@ -110,6 +110,7 @@
function isAvailable(item, user) {
return false;
return item.SupportsSync;
}

View file

@ -124,10 +124,8 @@
if (userId) {
$('#userProfileNavigation', page).show();
$('.serverNavigation', page).hide();
} else {
$('#userProfileNavigation', page).hide();
$('.serverNavigation', page).show();
}
Dashboard.getCurrentUser().done(function (loggedInUser) {

View file

@ -13,7 +13,7 @@
<a href="dashboard.html" data-role="button">${TabDashboard}</a>
<a href="dashboardgeneral.html" data-role="button">${TabSettings}</a>
<a href="#" data-role="button" class="ui-btn-active">${TabSecurity}</a>
<a href="dashboardsync.html" data-role="button">${TabSync}</a>
<!--<a href="dashboardsync.html" data-role="button">${TabSync}</a>-->
</div>
<h2 style="margin-top: -10px;">

View file

@ -9,13 +9,6 @@
<div data-role="content">
<div class="content-primary">
<div data-role="controlgroup" data-type="horizontal" class="localnav serverNavigation" data-mini="true" style="display: none;">
<a href="dashboard.html" data-role="button">${TabDashboard}</a>
<a href="dashboardgeneral.html" data-role="button">${TabSettings}</a>
<a href="serversecurity.html" data-role="button">${TabSecurity}</a>
<a href="dashboardsync.html" data-role="button">${TabSync}</a>
</div>
<div data-role="controlgroup" data-type="horizontal" class="localnav" id="userProfileNavigation" style="display: none;" data-mini="true">
<a href="#" data-role="button" class="ui-btn-active">${TabProfile}</a>
<a href="#" data-role="button" onclick="Dashboard.navigate('userimage.html', true);">${TabImage}</a>