<div class="flex flex-col gap-2 mt-2">
49
-
<div class="rounded drop-shadow-sm bg-white dark:bg-gray-800 px-6 py-4">
49
+
<div class="rounded bg-white dark:bg-gray-800">
50
+
<div class="px-6 py-4 z-5">
<a href="/{{ $.RepoInfo.FullName }}/pulls/{{ .PullId }}" class="dark:text-white">
129
+
{{ $otherPulls := index $.Stacks .StackId }}
130
+
<details class="bg-white dark:bg-gray-800 group">
131
+
<summary class="pb-4 px-6 text-xs list-none cursor-pointer hover:text-gray-500 hover:dark:text-gray-400">
133
+
{{ if eq (len $otherPulls) 1 }}
136
+
<div class="group-open:hidden flex items-center gap-2">
137
+
{{ i "chevrons-up-down" "w-4 h-4" }} expand {{ len $otherPulls }} pull{{$s}} in this stack
139
+
<div class="hidden group-open:flex items-center gap-2">
140
+
{{ i "chevrons-down-up" "w-4 h-4" }} hide {{ len $otherPulls }} pull{{$s}} in this stack
143
+
{{ block "pullList" (list $otherPulls $) }} {{ end }}
154
+
<div class="grid grid-cols-1 rounded-b border-b border-t border-gray-200 dark:border-gray-900 divide-y divide-gray-200 dark:divide-gray-900">
155
+
{{ range $pull := $list }}
156
+
<a href="/{{ $root.RepoInfo.FullName }}/pulls/{{ $pull.PullId }}" class="no-underline hover:no-underline hover:bg-gray-100/25 hover:dark:bg-gray-700/25">
157
+
<div class="flex gap-2 items-center px-6">
158
+
<div class="flex-grow min-w-0 w-full py-2">
159
+
{{ template "repo/pulls/fragments/summarizedHeader" $pull }}