rDrama/files/templates/CHRISTMAS/ProfilePopover.html

55 lines
1.8 KiB
HTML
Raw Normal View History

2022-01-03 04:56:47 +00:00
<div style="display:none" id="popover">
<div class="relative popover-user-profile bg-gray-100 dark:bg-gray-900" role="tooltip">
2022-01-03 02:28:34 +00:00
<img loading="lazy" class="pop-banner w-full h-28 object-cover">
2022-01-03 02:12:44 +00:00
<div class="flex items-end px-4 -mt-10">
<img loading="lazy" class="pop-picture h-24 w-24 rounded-sm p-[3px] bg-white dark:bg-gray-900 shadow-sm">
2022-01-03 02:15:38 +00:00
<div class="pl-3 truncate mb-1">
2022-01-02 23:59:16 +00:00
<h5 class="pop-username truncate ellipsis"></h5>
2022-01-03 02:12:44 +00:00
<div class="text-sm text-gray-500 flex items-center leading-4">
2022-01-03 01:51:03 +00:00
<span>
2022-01-03 02:07:13 +00:00
#<span class="pop-uid"></span>
2022-01-03 01:51:03 +00:00
</span>
2022-01-03 02:12:44 +00:00
<strong class="mx-1">&#183;</strong>
2022-01-03 01:51:03 +00:00
<span>
<span class="pop-coins"></span>
coins
</span>
</div>
2021-12-11 01:03:18 +00:00
</div>
</div>
2022-01-02 23:59:16 +00:00
<div class="hidden px-4">
2021-12-22 04:50:20 +00:00
<span class="pop-bio popover-bio"></span>
2021-12-11 01:03:18 +00:00
</div>
2022-01-02 23:59:16 +00:00
<div class="pop-badges p-4">
2021-12-11 01:03:18 +00:00
</div>
2022-01-03 01:34:49 +00:00
<div class="border-t border-gray-300 dark:border-gray-800 flex items-center p-4 gap-2 text-sm">
<span>
<strong class="pop-postcount"></strong>
2022-01-03 01:38:14 +00:00
<span class="text-gray-500">posts</span>
2022-01-03 01:34:49 +00:00
</span>
<span>
<strong class="pop-commentcount"></strong>
2022-01-03 01:38:14 +00:00
<span class="text-gray-500">comments</span>
2022-01-03 01:34:49 +00:00
</span>
<a target="_blank" class="pop-viewmore ml-auto text-decoration-none">
View
2022-01-03 02:26:56 +00:00
<i class="fas fa-arrow-alt-right fa-sm fa-fw px-1"></i>
2022-01-03 01:34:49 +00:00
</a>
</div>
2022-01-03 02:15:38 +00:00
2022-01-03 02:33:36 +00:00
{% if v %}
2022-01-03 02:15:38 +00:00
<!-- Actionable buttons -->
2022-01-03 04:10:36 +00:00
<div class="flex items-center space-x-2 absolute top-2 right-3" id="popoverWrapper">
2022-01-03 04:49:10 +00:00
<!-- <a href="#" class="btn btn-gray" data-bs-toggle="modal" data-bs-target="#giftCoinsModal">
2022-01-03 02:15:38 +00:00
<i class="fas fa-gift fa-fw fa-sm"></i>
2022-01-03 04:49:10 +00:00
</a> -->
2022-01-03 04:44:08 +00:00
<button class="btn btn-gray pop-dm-button" data-bs-toggle="modal" data-bs-target="#directMessageModal">
2022-01-03 04:15:36 +00:00
<i class="fas fa-paper-plane fa-fw fa-sm mr-2"></i>
Message
</button>
2022-01-03 02:15:38 +00:00
</div>
2022-01-03 02:33:36 +00:00
{% endif %}
2021-12-11 01:03:18 +00:00
</div>
</div>