Merge pull request #798 from openclassify/muammertop

select2 height fixed
This commit is contained in:
spektra2147 2020-11-17 12:52:41 +03:00 committed by GitHub
commit 4dc1516d34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,5 @@
$('.remote').on('show.bs.modal', function (e) {
$(this).find('.modal-content').load(e.relatedTarget.href);
if (typeof e.relatedTarget !== "undefined") {
$(this).find('.modal-content').load(e.relatedTarget.href);
}
});

View File

@ -26,7 +26,8 @@
.select2-container .select2-selection--multiple {
box-sizing: border-box;
cursor: pointer;
display: block;
display: inline-block;
padding-bottom: 5px;
min-height: 32px;
user-select: none;
-webkit-user-select: none; }