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

View file

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.5 KiB

View file

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

View file

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

View file

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