Monorepo for Tangled tangled.org
2

Configure Feed

Select the types of activity you want to include in your feed.

appview/pages: fix Safari rendering bug

Signed-off-by: Seongmin Lee <git@boltless.me>

author
Seongmin Lee
committer
Tangled
date (Jun 19, 2026, 1:23 PM +0300) commit a0e62ce3 parent 83180319 change-id uqskpkys
+13 -11
+13 -11
appview/pages/templates/repo/fragments/reactionsPopup.html
··· 16 16 id="reactions-popover-{{ $id }}" 17 17 popover 18 18 style="position-anchor: --reactions-anchor-{{ $id }};" 19 - class="[&:popover-open]:grid grid-cols-4 [position-area:bottom_center] justify-self-center w-max inset-auto mt-1 rounded bg-white dark:bg-gray-800 dark:text-white border border-gray-200 dark:border-gray-700 shadow-lg" 19 + class="[position-area:bottom_center] justify-self-center w-max h-fit inset-auto mt-1 rounded bg-white dark:bg-gray-800 dark:text-white border border-gray-200 dark:border-gray-700 shadow-lg" 20 20 > 21 - {{ range $kind := const.OrderedReactionKinds }} 22 - <button 23 - type="button" 24 - popovertarget="reactions-popover-{{ $id }}" 25 - popovertargetaction="hide" 26 - class="reactBtn-{{ $.CommentRkey }}-{{ $kind }} btn-flat px-3 text-base hover:bg-gray-100 dark:hover:bg-gray-700" 27 - > 28 - {{ $kind }} 29 - </button> 30 - {{ end }} 21 + <div class="grid grid-cols-4"> 22 + {{ range $kind := const.OrderedReactionKinds }} 23 + <button 24 + type="button" 25 + popovertarget="reactions-popover-{{ $id }}" 26 + popovertargetaction="hide" 27 + class="reactBtn-{{ $.CommentRkey }}-{{ $kind }} btn-flat px-3 text-base hover:bg-gray-100 dark:hover:bg-gray-700" 28 + > 29 + {{ $kind }} 30 + </button> 31 + {{ end }} 32 + </div> 31 33 </div> 32 34 {{ end }}