Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/unfold/templates/unfold/helpers/navigation_user.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@

<div class="cursor-pointer flex flex-row gap-3 items-center min-h-[64px] -mx-6 -my-3 px-6 py-3 hover:bg-base-100 dark:hover:bg-base-800" x-on:click="openUserLinks = !openUserLinks" x-bind:class="{'bg-base-100 dark:bg-base-800': openUserLinks}">
{% with avatar_url=request.user.avatar_url %}
<div class="bg-white bg-cover h-[38px] flex items-center justify-center rounded-default select-none shadow w-[38px] dark:bg-white/[.06]" {% if avatar_url %}style="background-image: url('{{ avatar_url }}');"{% endif %}>
<div class="bg-white bg-cover h-[38px] flex items-center justify-center rounded-default select-none shadow w-[38px] dark:bg-base-700" {% if avatar_url %}style="background-image: url('{{ avatar_url }}');"{% endif %}>
{% if not avatar_url %}
<span class="material-symbols-outlined text-base-400 dark:text-base-500">person</span>
<span class="material-symbols-outlined text-base-400">person</span>
{% endif %}
</div>
{% endwith %}
Expand Down
2 changes: 1 addition & 1 deletion src/unfold/templates/unfold/helpers/tab_actions.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<span class="material-symbols-outlined">more_horiz</span>
{% endcomponent %}

<ul class="bg-white container hidden flex-col font-medium mx-auto left-0 right-0 lg:flex lg:flex-row lg:mb-0 lg:mt-0 max-lg:absolute max-lg:top-16" x-bind:class="{'max-lg:flex': showActions}">
<ul class="bg-white container hidden flex-col font-medium mx-auto left-0 right-0 lg:flex lg:flex-row lg:mb-0 lg:mt-0 max-lg:absolute max-lg:top-16 dark:bg-base-900" x-bind:class="{'max-lg:flex': showActions}">
{% if not actions_list_hide_default and not actions_detail_hide_default %}
{% if actions_items %}
{{ actions_items }}
Expand Down