alpha
Login
or
Join now
dunkirk.sh
/
core
forked from
tangled.org/core
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix styles for commit-expand button
author
Akshay
date
1 year ago
(Feb 21, 2025, 6:14 PM UTC)
commit
ee81ad33
ee81ad33e14bb97ff5f51255ec56baa38221379e
parent
013075f2
013075f2b1c3783e34fb40a35711281b577453c5
+6
-3
1 changed file
Expand all
Collapse all
Unified
Split
appview
pages
templates
repo
index.html
+6
-3
appview/pages/templates/repo/index.html
Reviewed
···
109
109
{{ $messageParts := splitN .Message "\n\n" 2 }}
110
110
<div class="text-base cursor-pointer">
111
111
<div>
112
112
-
<div class="flex items-center gap-1">
112
112
+
<div>
113
113
<a href="/{{ $.RepoInfo.FullName }}/commit/{{ .Hash.String }}" class="inline no-underline hover:underline">{{ index $messageParts 0 }}</a>
114
114
{{ if gt (len $messageParts) 1 }}
115
115
-
<button class="text-sm inline rounded-sm bg-gray-300 text-gray-700 px-1 w-fit hover:bg-gray-400"
116
116
-
hx-on:click="this.parentElement.nextElementSibling.classList.toggle('hidden')">…</button>
115
115
+
116
116
+
<button class="py-1/2 px-1 bg-gray-200 hover:bg-gray-400 rounded"
117
117
+
hx-on:click="this.parentElement.nextElementSibling.classList.toggle('hidden')">
118
118
+
<i class="w-3 h-3" data-lucide="ellipsis"></i>
119
119
+
</button>
117
120
{{ end }}
118
121
</div>
119
122
{{ if gt (len $messageParts) 1 }}