+1
-1
appview/pages/templates/repo/blob.html
+1
-1
appview/pages/templates/repo/blob.html
+3
-3
appview/pages/templates/repo/tree.html
+3
-3
appview/pages/templates/repo/tree.html
···
17
17
{{ $containerstyle := "py-1" }}
18
18
{{ $linkstyle := "no-underline hover:underline" }}
19
19
20
-
<div class="pb-2 mb-3 text-base border-b border-gray-200 dark:border-gray-500">
20
+
<div class="pb-2 mb-3 text-base border-b border-gray-200 dark:border-gray-700">
21
21
<div class="flex flex-col md:flex-row md:justify-between gap-2">
22
-
<div id="breadcrumbs" class="overflow-x-auto whitespace-nowrap">
22
+
<div id="breadcrumbs" class="overflow-x-auto whitespace-nowrap text-gray-400 dark:text-gray-500">
23
23
{{ range .BreadCrumbs }}
24
-
<a href="{{ index . 1}}" class="text-bold text-gray-500 dark:text-gray-400 {{ $linkstyle }}">{{ index . 0 }}</a> /
24
+
<a href="{{ index . 1}}" class="text-bold text-gray-500 dark:text-gray-400 {{ $linkstyle }}">{{ index . 0 }}</a> /
25
25
{{ end }}
26
26
</div>
27
27
<div id="dir-info" class="text-gray-500 dark:text-gray-400 text-xs md:text-sm flex flex-wrap items-center gap-1 md:gap-0">
+6
-6
appview/pages/templates/user/profile.html
+6
-6
appview/pages/templates/user/profile.html
···
60
60
{{ if gt (len $items) 0 }}
61
61
<details>
62
62
<summary class="list-none cursor-pointer hover:text-gray-500 hover:dark:text-gray-400">
63
-
<div class="flex items-center gap-2">
63
+
<div class="flex flex-wrap items-center gap-2">
64
64
{{ i "book-plus" "w-4 h-4" }}
65
65
created {{ len $items }} {{if eq (len $items) 1 }}repository{{else}}repositories{{end}}
66
66
</div>
67
67
</summary>
68
-
<div class="p-2 pr-0 text-sm flex flex-col gap-3 mb-2">
68
+
<div class="p-2 pr-0 ml-2 text-sm flex flex-col gap-3 mb-2 border-l border-gray-300 dark:border-gray-600">
69
69
{{ range $items }}
70
70
<div class="flex flex-wrap items-center gap-2">
71
71
<span class="text-gray-500 dark:text-gray-400">
···
94
94
{{ if gt (len $items) 0 }}
95
95
<details>
96
96
<summary class="list-none cursor-pointer hover:text-gray-500 hover:dark:text-gray-400">
97
-
<div class="flex items-center gap-2">
97
+
<div class="flex flex-wrap items-center gap-2">
98
98
{{ i "circle-dot" "w-4 h-4" }}
99
99
100
100
<div>
···
115
115
116
116
</div>
117
117
</summary>
118
-
<div class="p-2 pr-0 text-sm flex flex-col gap-3 mb-2">
118
+
<div class="p-2 pr-0 ml-2 text-sm flex flex-col gap-3 mb-2 border-l border-gray-300 dark:border-gray-600">
119
119
{{ range $items }}
120
120
{{ $repoOwner := index $handleMap .Metadata.Repo.Did }}
121
121
{{ $repoName := .Metadata.Repo.Name }}
···
156
156
{{ if gt (len $items) 0 }}
157
157
<details>
158
158
<summary class="list-none cursor-pointer hover:text-gray-500 hover:dark:text-gray-400">
159
-
<div class="flex items-center gap-2">
159
+
<div class="flex flex-wrap items-center gap-2">
160
160
{{ i "git-pull-request" "w-4 h-4" }}
161
161
162
162
<div>
···
184
184
185
185
</div>
186
186
</summary>
187
-
<div class="p-2 pr-0 text-sm flex flex-col gap-3 mb-2">
187
+
<div class="p-2 pr-0 ml-2 text-sm flex flex-col gap-3 mb-2 border-l border-gray-300 dark:border-gray-600">
188
188
{{ range $items }}
189
189
{{ $repoOwner := index $handleMap .Repo.Did }}
190
190
{{ $repoName := .Repo.Name }}