2022-05-04 23:09:46 +00:00
|
|
|
<div id="form" class="d-none"></div>
|
|
|
|
<div class="modal fade" id="emojiModal" tabindex="-1" role="dialog" aria-labelledby="emojiModalTitle" aria-hidden="true">
|
2022-05-05 21:12:07 +00:00
|
|
|
<style>
|
|
|
|
#emojiTabs {height: 80%;}
|
|
|
|
@media (max-height: 900px) {
|
|
|
|
#emojiTabs {height: 100%;}
|
|
|
|
#emojiModalInternalDivIDK {margin-top: 0 !important; margin-bottom: 0 !important; padding-top: 0 !important; padding-bottom: 0 !important;}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<div id="emojiModalInternalDivIDK" class="modal-dialog modal-dialog-scrollable modal-dialog-centered p-2 py-5 emoji-modal" role="document">
|
2022-05-04 23:09:46 +00:00
|
|
|
<div class="modal-content" id="emojiTabs">
|
|
|
|
<div class="modal-header">
|
|
|
|
<div>
|
2022-05-05 21:12:07 +00:00
|
|
|
<ul class="nav nav-pills py-2" id="emoji-modal-tabs">
|
2022-05-04 23:09:46 +00:00
|
|
|
<li class="nav-item">
|
2022-05-05 21:12:07 +00:00
|
|
|
<a class="nav-link active emojitab" data-class-name="favorite" data-bs-toggle="tab" href="#" onclick="switchEmojiTab(event)">⭐ Favorite ⭐</a>
|
2022-05-04 23:09:46 +00:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<button class="close" data-bs-dismiss="modal" aria-label="Close">
|
|
|
|
<i class="fal fa-times text-muted"></i>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
|
2022-05-05 21:12:07 +00:00
|
|
|
<div class="px-3">
|
|
|
|
<input disabled autocomplete="off" class="form-control px-2" type="text" id="emoji_search" placeholder="Search..">
|
|
|
|
</div>
|
|
|
|
<div class="px-3 d-flex flex-row">
|
|
|
|
<fieldset class="p-2">
|
|
|
|
<label style="display: inline">Options:</legend>
|
|
|
|
|
2022-05-07 04:13:19 +00:00
|
|
|
<div style="display: inline" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Makes the emoji larger">
|
|
|
|
<input type="checkbox" id="emoji-sel-0" value="#" class="emoji-suffix">
|
|
|
|
<label for="emoji-sel-0">Large</label>
|
2022-05-05 21:12:07 +00:00
|
|
|
</div>
|
|
|
|
|
2022-05-07 04:13:19 +00:00
|
|
|
<div style="display: inline" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Mirror the emoji along the Y axis">
|
|
|
|
<input type="checkbox" id="emoji-sel-1" value="!" class="emoji-suffix">
|
|
|
|
<label for="emoji-sel-1">Mirror</label>
|
2022-05-05 21:12:07 +00:00
|
|
|
</div>
|
|
|
|
|
2022-05-07 04:13:19 +00:00
|
|
|
<div style="display: inline" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Adds a hand that pats the emoji">
|
|
|
|
<input type="checkbox" id="emoji-sel-2" value="pat" class="emoji-postfix">
|
|
|
|
<label for="emoji-sel-2">Pat</label>
|
2022-05-05 21:12:07 +00:00
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
<!--
|
|
|
|
<fieldset class="p-2">
|
|
|
|
<label>marseyalphabet:</label>
|
|
|
|
<input type="text">
|
|
|
|
<button>generate!</button>
|
|
|
|
</fieldset>-->
|
|
|
|
</div>
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
<div style="overflow-y: scroll;">
|
|
|
|
<div class="modal-body p-0" id="emoji-modal-body">
|
2022-05-05 21:12:07 +00:00
|
|
|
<div id="no-emojis-found" class="tab-content py-3 pl-2" hidden>
|
|
|
|
No results... Next time be better with your query. 💅
|
|
|
|
</div>
|
|
|
|
<div id="emojis-work" class="tab-content py-3 pl-2">
|
|
|
|
I am working as hard as I can, sweety... 🚴
|
|
|
|
</div>
|
|
|
|
<div id="tab-content" class="tab-content d-flex flex-wrap py-3 pl-2" hidden>
|
|
|
|
<style>
|
|
|
|
.emoji2 {
|
|
|
|
/*background: None!important;*/
|
|
|
|
width:60px;
|
|
|
|
height: 85px;
|
|
|
|
overflow: hidden;
|
|
|
|
border: none
|
|
|
|
}
|
|
|
|
</style>
|
2022-05-07 04:13:19 +00:00
|
|
|
<template id="emoji-button-template">
|
2022-05-05 21:12:07 +00:00
|
|
|
<button class="btn m-1 px-0 emoji2" data-bs-toggle="tooltip" delay:="0">
|
|
|
|
<img loading="lazy" width=50>
|
|
|
|
</button>
|
|
|
|
</template>
|
|
|
|
|
2022-05-04 23:09:46 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2022-05-09 01:08:49 +00:00
|
|
|
<script src="/assets/js/emoji_modal.js?v=279"></script>
|