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

updated tvdb search

This commit is contained in:
Luke Pulverenti 2015-01-27 01:50:40 -05:00
parent 6cfbfd9959
commit 19374a0bb2
6 changed files with 15 additions and 3 deletions

View file

@ -70,9 +70,9 @@
<input type="hidden" id="featureId" name="item_number" value="">
<input type="hidden" name="notify_url" value="http://mb3admin.com/admin/service/services/ppipn.php">
<input type="hidden" name="return" id="paypalReturnUrl" value="#">
<a data-role="button" id="ppButton" onclick="$(this).parents('form')[0].submit();">
<img src="css/images/supporter/registerpaypal.png" />
</a>
<button type="submit" id="ppButton" data-theme="b" data-icon="arrow-r" data-iconpos="right">
${RegisterWithPayPal}
</button>
</div>
</form>

View file

@ -221,6 +221,10 @@
background-size: cover;
}
.centeredCardImage {
background-position: center center;
}
.bannerCard {
width: 100%;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.5 KiB

View file

@ -187,6 +187,8 @@
bottom: 0;
z-index: 1001;
border: 0 !important;
overflow-x: hidden;
overflow-y: auto;
}
.searchResultsContainer {

View file

@ -1234,6 +1234,9 @@
if (options.coverImage) {
imageCssClass += " coveredCardImage";
}
if (options.centerImage) {
imageCssClass += " centeredCardImage";
}
var dataSrc = "";

View file

@ -358,6 +358,7 @@
overlayText: false,
showTitle: true,
coverImage: true,
centerImage: true,
textLines: getAdditionalTextLines
});
$('.itemsContainer', elem).html(html).lazyChildren();
@ -418,11 +419,13 @@
if (val) {
$('.btnCloseSearch').show();
updateSearchOverlay(getSearchOverlay(true).fadeIn('fast'), val);
$(document.body).addClass('bodyWithPopupOpen');
} else {
$('.btnCloseSearch').hide();
updateSearchOverlay(getSearchOverlay(false).fadeOut('fast'), val);
$(document.body).removeClass('bodyWithPopupOpen');
}
}