forked from rDrama/rDrama
1
0
Fork 0
master
kek7198 2021-12-31 15:13:43 -06:00
parent 5ba9dbcb9d
commit cffd1225da
1 changed files with 4 additions and 18 deletions

View File

@ -25,6 +25,7 @@
</ul>
</div>
<div class="ml-auto flex space-x-2">
<!-- Filter by mod -->
<div class="dropdown">
<button class="block px-4 py-2 bg-gradient-to-t from-gray-200 to-gray-100 focus:from-gray-100 focus:to-gray-200 border border-gray-300 rounded-md text-shadow shadow-inset-t-white-10 text-sm font-bold text-gray-700 focus:text-gray-900 focus:shadow-inner focus:outline-none dropdown-toggle" type="button" id="dropdownLogSortsButton" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
{% if admin %}
@ -48,13 +49,13 @@
{% endfor %}
</ul>
</div>
<!-- Filter by action -->
<div class="dropdown">
<button class="block px-4 py-2 bg-gradient-to-t from-gray-200 to-gray-100 focus:from-gray-100 focus:to-gray-200 border border-gray-300 rounded-md text-shadow shadow-inset-t-white-10 text-sm font-bold text-gray-700 focus:text-gray-900 focus:shadow-inner focus:outline-none dropdown-toggle" type="button" id="dropdownLogActionSortsButton" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
{% if type %}
<i class="fas {{types[type]['icon']}} fa-fw mr-2 w-6 h-6"></i>{{type}}
<i class="fas {{types[type]['icon']}} fa-fw mr-2"></i>{{type}}
{% else %}
<i class="fas fa-broom fa-fw mr-2 w-6 h-6"></i>All
<i class="fas fa-broom fa-fw mr-2"></i>All
{% endif %}
</button>
<ul class="dropdown-menu w-56 bg-gray-900 rounded-md shadow-lg" aria-labelledby="dropdownLogActionSortsButton" x-placement="bottom-start">
@ -72,21 +73,6 @@
{% endfor %}
</ul>
</div>
<div class="dropdown dropdown-actions">
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenuButton2" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
{% if type %}<i class="fas {{types[type]['icon']}} mr-2"></i>{{type}}{% else %}<i class="fas fa-broom mr-2"></i>All{% endif %}
</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton2s" x-placement="bottom-start" style="position: absolute; will-change: transform; top: 0px; left: 0px; transform: translate3d(0px, 31px, 0px);">
<a class="dropdown-item" href="/log{% if admin %}?admin={{admin}}{% endif %}"><i class="fas fa-broom mr-2"></i>All</a>
{% for t, v in types.items() %}
<a class="dropdown-item" href="?{% if admin %}admin={{admin}}&{% endif %}kind={{t}}"><i class="fas {{v['icon']}} mr-2"></i>{{t}}</a>
{% endfor %}
</div>
</div>
</div>
</div>
</div>