rDrama/files/templates/dropdowns/ProfileDropdown.html
2021-12-08 21:46:45 -06:00

19 lines
No EOL
1.2 KiB
HTML

<div class="dropdown">
<button class="btn btn-gray" type="button" id="dropdownProfile-Actions" data-bs-toggle="dropdown" aria-expanded="false" data-bs-auto-close="outside">
<i class="fas fa-ellipsis-h fa-fw fa-sm"></i>
</button>
<ul class="dropdown-menu w-56 bg-gray-900 rounded-md shadow-lg" aria-labelledby="dropdownProfile-Actions">
<li>
<button class="dropdown-item block w-full text-left px-4 py-2 text-sm text-gray-200 bg-gradient-to-t hover:from-red-800 hover:to-red-700 hover:shadow-inner focus:shadow-inner focus:bg-gradient-to-t focus:from-red-800 focus:to-red-700" onclick="post_toast('/@{{u.username}}/suicide')">
<i class="fas fa-briefcase-medical fa-sm fa-fw mr-4"></i>
Get them help
</button>
</li>
<li>
<button class="dropdown-item block w-full text-left px-4 py-2 text-sm text-gray-200 bg-gradient-to-t hover:from-red-800 hover:to-red-700 hover:shadow-inner focus:shadow-inner focus:bg-gradient-to-t focus:from-red-800 focus:to-red-700" onclick="toggleElement('profile-toggleable-mobile', 'coin-transfer-mobile')">
<i class="fas fa-gift fa-sm fa-fw mr-4"></i>
Gift {{'COINS_NAME' | app_config}}
</button>
</li>
</ul>
</div>