mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
added dlna music folders
This commit is contained in:
parent
f1e3024f71
commit
9b205be038
9 changed files with 23 additions and 15 deletions
|
@ -12,7 +12,7 @@
|
||||||
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
||||||
<a href="support.html" data-role="button">${TabGeneral}</a>
|
<a href="support.html" data-role="button">${TabGeneral}</a>
|
||||||
<a href="log.html" data-role="button">${TabLogs}</a>
|
<a href="log.html" data-role="button">${TabLogs}</a>
|
||||||
<a href="supporter.html" data-role="button">${TabSupporterClub}</a>
|
<a href="supporter.html" data-role="button">${TabDonate}</a>
|
||||||
<a href="supporterkey.html" data-role="button">${TabSupporterKey}</a>
|
<a href="supporterkey.html" data-role="button">${TabSupporterKey}</a>
|
||||||
<a href="about.html" data-role="button" class="ui-btn-active">${TabAbout}</a>
|
<a href="about.html" data-role="button" class="ui-btn-active">${TabAbout}</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -350,6 +350,14 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media all and (max-width: 800px) {
|
||||||
|
|
||||||
|
/* The sidebar isn't visible at this size, so there's no way to navigate within the editor */
|
||||||
|
.editorViewMenu {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.libraryDocument .dashboardMenuButton {
|
.libraryDocument .dashboardMenuButton {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
|
@ -84,7 +84,7 @@
|
||||||
|
|
||||||
/* Fixes button running outside of list */
|
/* Fixes button running outside of list */
|
||||||
.btnRemoveFromEditorList .ui-btn-inner {
|
.btnRemoveFromEditorList .ui-btn-inner {
|
||||||
padding-right: 0!important;
|
padding-right: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -266,7 +266,7 @@
|
||||||
left: 0;
|
left: 0;
|
||||||
width: 30%;
|
width: 30%;
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
overflow-x: auto!important;
|
overflow-x: auto !important;
|
||||||
display: block;
|
display: block;
|
||||||
border-right: 1px solid #555;
|
border-right: 1px solid #555;
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
||||||
<a href="support.html" data-role="button">${TabGeneral}</a>
|
<a href="support.html" data-role="button">${TabGeneral}</a>
|
||||||
<a href="log.html" data-role="button" class="ui-btn-active">${TabLogs}</a>
|
<a href="log.html" data-role="button" class="ui-btn-active">${TabLogs}</a>
|
||||||
<a href="supporter.html" data-role="button">${TabSupporterClub}</a>
|
<a href="supporter.html" data-role="button">${TabDonate}</a>
|
||||||
<a href="supporterkey.html" data-role="button">${TabSupporterKey}</a>
|
<a href="supporterkey.html" data-role="button">${TabSupporterKey}</a>
|
||||||
<a href="about.html" data-role="button">${TabAbout}</a>
|
<a href="about.html" data-role="button">${TabAbout}</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -141,7 +141,7 @@
|
||||||
viewMenuCssClass = 'channelsViewMenu';
|
viewMenuCssClass = 'channelsViewMenu';
|
||||||
}
|
}
|
||||||
|
|
||||||
return '<a data-itemid="' + itemId + '" class="lnkMediaFolder viewMenuLink viewMenuTextLink ' + viewMenuCssClass + '" href="' + getItemHref(i) + '">' + i.Name + '</a>';
|
return '<a data-itemid="' + itemId + '" class="lnkMediaFolder viewMenuLink viewMenuTextLink ' + viewMenuCssClass + '" href="' + getItemHref(i, i.CollectionType) + '">' + i.Name + '</a>';
|
||||||
|
|
||||||
}).join('');
|
}).join('');
|
||||||
|
|
||||||
|
|
|
@ -104,15 +104,15 @@
|
||||||
if (info.IsActiveSupporter && info.PlanType == 'Lifetime') {
|
if (info.IsActiveSupporter && info.PlanType == 'Lifetime') {
|
||||||
|
|
||||||
$('.planSummary', page)
|
$('.planSummary', page)
|
||||||
.html('You have a lifetime supporter club membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Media Browser.')
|
.html('You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Media Browser.')
|
||||||
.css('color', 'green');
|
.css('color', 'blue');
|
||||||
|
|
||||||
}
|
}
|
||||||
else if (info.IsActiveSupporter) {
|
else if (info.IsActiveSupporter) {
|
||||||
|
|
||||||
$('.planSummary', page)
|
$('.planSummary', page)
|
||||||
.html('You have an active ' + info.PlanType + ' membership. You can upgrade your plan using the options below.')
|
.html('You have an active ' + info.PlanType + ' membership. You can upgrade your plan using the options below.')
|
||||||
.css('color', 'green');
|
.css('color', 'blue');
|
||||||
|
|
||||||
}
|
}
|
||||||
else if (info.IsExpiredSupporter) {
|
else if (info.IsExpiredSupporter) {
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
||||||
<a href="support.html" data-role="button" class="ui-btn-active">${TabGeneral}</a>
|
<a href="support.html" data-role="button" class="ui-btn-active">${TabGeneral}</a>
|
||||||
<a href="log.html" data-role="button">${TabLogs}</a>
|
<a href="log.html" data-role="button">${TabLogs}</a>
|
||||||
<a href="supporter.html" data-role="button">${TabSupporterClub}</a>
|
<a href="supporter.html" data-role="button">${TabDonate}</a>
|
||||||
<a href="supporterkey.html" data-role="button">${TabSupporterKey}</a>
|
<a href="supporterkey.html" data-role="button">${TabSupporterKey}</a>
|
||||||
<a href="about.html" data-role="button">${TabAbout}</a>
|
<a href="about.html" data-role="button">${TabAbout}</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
||||||
<a href="support.html" data-role="button">${TabGeneral}</a>
|
<a href="support.html" data-role="button">${TabGeneral}</a>
|
||||||
<a href="log.html" data-role="button">${TabLogs}</a>
|
<a href="log.html" data-role="button">${TabLogs}</a>
|
||||||
<a href="supporter.html" data-role="button" class="ui-btn-active">${TabSupporterClub}</a>
|
<a href="supporter.html" data-role="button" class="ui-btn-active">${TabDonate}</a>
|
||||||
<a href="supporterkey.html" data-role="button">${TabSupporterKey}</a>
|
<a href="supporterkey.html" data-role="button">${TabSupporterKey}</a>
|
||||||
<a href="about.html" data-role="button">${TabAbout}</a>
|
<a href="about.html" data-role="button">${TabAbout}</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -34,28 +34,28 @@
|
||||||
<div class="fldLifetime">
|
<div class="fldLifetime">
|
||||||
<input type="radio" class="radioDonationType" name="radioDonationType" id="radioLifetimeSupporter" value="lifetime" checked="checked">
|
<input type="radio" class="radioDonationType" name="radioDonationType" id="radioLifetimeSupporter" value="lifetime" checked="checked">
|
||||||
<label for="radioLifetimeSupporter">
|
<label for="radioLifetimeSupporter">
|
||||||
${OptionLifeTimeSupporterClubMembership}<br />
|
${OptionLifeTimeSupporterMembership}<br />
|
||||||
<span class="lifetimeAmount"></span>
|
<span class="lifetimeAmount"></span>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="fldYearly">
|
<div class="fldYearly">
|
||||||
<input type="radio" class="radioDonationType" name="radioDonationType" id="radioYearlySupporter" value="yearly">
|
<input type="radio" class="radioDonationType" name="radioDonationType" id="radioYearlySupporter" value="yearly">
|
||||||
<label for="radioYearlySupporter">
|
<label for="radioYearlySupporter">
|
||||||
Yearly supporter club membership<br />
|
${OptionYearlySupporterMembership}<br />
|
||||||
<span class="yearlyAmount"></span>
|
<span class="yearlyAmount"></span>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="fldMonthly">
|
<div class="fldMonthly">
|
||||||
<input type="radio" class="radioDonationType" name="radioDonationType" id="radioMonthlySupporter" value="monthly">
|
<input type="radio" class="radioDonationType" name="radioDonationType" id="radioMonthlySupporter" value="monthly">
|
||||||
<label for="radioMonthlySupporter">
|
<label for="radioMonthlySupporter">
|
||||||
Monthly supporter club membership<br />
|
${OptionMonthlySupporterMembership}<br />
|
||||||
<span class="monthlyAmount"></span>
|
<span class="monthlyAmount"></span>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="fldDaily">
|
<div class="fldDaily">
|
||||||
<input type="radio" class="radioDonationType" name="radioDonationType" id="radioDailySupporter" value="daily">
|
<input type="radio" class="radioDonationType" name="radioDonationType" id="radioDailySupporter" value="daily">
|
||||||
<label for="radioDailySupporter">
|
<label for="radioDailySupporter">
|
||||||
Daily supporter club membership<br />
|
Daily supporter membership<br />
|
||||||
<span class="dailyAmount"></span>
|
<span class="dailyAmount"></span>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
||||||
<a href="support.html" data-role="button">${TabGeneral}</a>
|
<a href="support.html" data-role="button">${TabGeneral}</a>
|
||||||
<a href="log.html" data-role="button">${TabLogs}</a>
|
<a href="log.html" data-role="button">${TabLogs}</a>
|
||||||
<a href="supporter.html" data-role="button">${TabSupporterClub}</a>
|
<a href="supporter.html" data-role="button">${TabDonate}</a>
|
||||||
<a href="supporterkey.html" data-role="button" class="ui-btn-active">${TabSupporterKey}</a>
|
<a href="supporterkey.html" data-role="button" class="ui-btn-active">${TabSupporterKey}</a>
|
||||||
<a href="about.html" data-role="button">${TabAbout}</a>
|
<a href="about.html" data-role="button">${TabAbout}</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue