mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
add system id to remote calls
This commit is contained in:
parent
56d7a4b41f
commit
bf80b29a97
4 changed files with 38 additions and 8 deletions
|
@ -536,6 +536,13 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media all and (min-width: 2200px) {
|
||||||
|
|
||||||
|
.homePageBackdropCard {
|
||||||
|
width: 16.666666666666666666666666666667%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/** homePageSquareCard */
|
/** homePageSquareCard */
|
||||||
.homePageSquareCard .cardPadder {
|
.homePageSquareCard .cardPadder {
|
||||||
|
@ -575,14 +582,14 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media all and (min-width: 1600px) {
|
@media all and (min-width: 1280px) {
|
||||||
|
|
||||||
.homePageSquareCard {
|
.homePageSquareCard {
|
||||||
width: 14.285714285714285714285714285714%;
|
width: 14.285714285714285714285714285714%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media all and (min-width: 1280px) {
|
@media all and (min-width: 1600px) {
|
||||||
|
|
||||||
.homePageSquareCard {
|
.homePageSquareCard {
|
||||||
width: 14.285714285714285714285714285714%;
|
width: 14.285714285714285714285714285714%;
|
||||||
|
@ -596,6 +603,13 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media all and (min-width: 2200px) {
|
||||||
|
|
||||||
|
.homePageSquareCard {
|
||||||
|
width: 11.11111111111111111%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/** homePagePortraitCard */
|
/** homePagePortraitCard */
|
||||||
.homePagePortraitCard .cardPadder {
|
.homePagePortraitCard .cardPadder {
|
||||||
|
@ -649,6 +663,13 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media all and (min-width: 2200px) {
|
||||||
|
|
||||||
|
.homePagePortraitCard {
|
||||||
|
width: 10%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/** homePageSmallBackdropCard */
|
/** homePageSmallBackdropCard */
|
||||||
.homePageSmallBackdropCard .cardPadder {
|
.homePageSmallBackdropCard .cardPadder {
|
||||||
|
@ -694,3 +715,11 @@
|
||||||
width: 14.285714285714285714285714285714%;
|
width: 14.285714285714285714285714285714%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@media all and (min-width: 2200px) {
|
||||||
|
|
||||||
|
.homePageSmallBackdropCard {
|
||||||
|
width: 12.5%;
|
||||||
|
}
|
||||||
|
}
|
|
@ -118,14 +118,14 @@
|
||||||
@media all and (min-width: 1600px) {
|
@media all and (min-width: 1600px) {
|
||||||
|
|
||||||
.ehsContent {
|
.ehsContent {
|
||||||
width: 1280px;
|
width: 1500px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media all and (min-width: 1600px) {
|
@media all and (min-width: 2200px) {
|
||||||
|
|
||||||
.ehsContent {
|
.ehsContent {
|
||||||
width: 1500px;
|
width: 1900px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -52,7 +52,8 @@
|
||||||
limit: query.Limit,
|
limit: query.Limit,
|
||||||
totalRecordCount: result.TotalRecordCount,
|
totalRecordCount: result.TotalRecordCount,
|
||||||
viewButton: true,
|
viewButton: true,
|
||||||
showLimit: false
|
showLimit: false,
|
||||||
|
updatePageSizeSetting: false
|
||||||
});
|
});
|
||||||
$('.listTopPaging', page).html(pagingHtml).trigger('create');
|
$('.listTopPaging', page).html(pagingHtml).trigger('create');
|
||||||
|
|
||||||
|
|
|
@ -52,13 +52,13 @@
|
||||||
<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 membership<br />
|
Daily supporter membership<br />
|
||||||
<span class="dailyAmount"></span>
|
<span class="dailyAmount"></span>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>-->
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<div class="fieldDescription">${LabelRecurringDonationCanBeCancelledHelp}</div>
|
<div class="fieldDescription">${LabelRecurringDonationCanBeCancelledHelp}</div>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue