this repo has no description

Compare changes

Choose any two refs to compare.

Changed files
+22 -19
appview
pages
templates
repo
issues
pulls
fragments
docs
nix
modules
+2 -2
appview/pages/templates/repo/issues/fragments/issueListing.html
··· 21 21 {{ $state = "open" }} 22 22 {{ end }} 23 23 24 - <span class="inline-flex items-center rounded px-2 py-[5px] {{ $bgColor }}"> 24 + <span class="inline-flex items-center rounded px-2 py-[5px] {{ $bgColor }} text-sm"> 25 25 {{ i $icon "w-3 h-3 mr-1.5 text-white dark:text-white" }} 26 - <span class="text-white dark:text-white text-sm">{{ $state }}</span> 26 + <span class="text-white dark:text-white">{{ $state }}</span> 27 27 </span> 28 28 29 29 <span class="ml-1">
+5 -5
appview/pages/templates/repo/issues/issue.html
··· 58 58 {{ $icon = "circle-dot" }} 59 59 {{ end }} 60 60 <div class="inline-flex items-center gap-2"> 61 - <span class="inline-flex items-center rounded px-2 py-[5px] {{ $bgColor }}"> 62 - {{ i $icon "w-3 h-3 mr-1.5 text-white dark:text-white" }} 63 - <span class="text-white dark:text-white text-sm">{{ .Issue.State }}</span> 64 - </span> 65 - 61 + <div id="state" 62 + class="inline-flex items-center rounded px-3 py-1 {{ $bgColor }}"> 63 + {{ i $icon "w-4 h-4 mr-1.5 text-white" }} 64 + <span class="text-white">{{ .Issue.State }}</span> 65 + </div> 66 66 <span class="text-gray-500 dark:text-gray-400 text-sm flex flex-wrap items-center gap-1"> 67 67 opened by 68 68 {{ template "user/fragments/picHandleLink" .Issue.Did }}
+7 -6
appview/pages/templates/repo/pulls/fragments/pullHeader.html
··· 1 1 {{ define "repo/pulls/fragments/pullHeader" }} 2 - <header class="pb-2"> 2 + <header class="pb-4"> 3 3 <h1 class="text-2xl dark:text-white"> 4 4 {{ .Pull.Title | description }} 5 5 <span class="text-gray-500 dark:text-gray-400">#{{ .Pull.PullId }}</span> ··· 17 17 {{ $icon = "git-merge" }} 18 18 {{ end }} 19 19 20 - <section> 20 + <section class="mt-2"> 21 21 <div class="flex items-center gap-2"> 22 - <span 23 - class="inline-flex items-center rounded px-2 py-[5px] {{ $bgColor }} text-sm" 22 + <div 23 + id="state" 24 + class="inline-flex items-center rounded px-3 py-1 {{ $bgColor }}" 24 25 > 25 - {{ i $icon "w-3 h-3 mr-1.5 text-white" }} 26 + {{ i $icon "w-4 h-4 mr-1.5 text-white" }} 26 27 <span class="text-white">{{ .Pull.State.String }}</span> 27 - </span> 28 + </div> 28 29 <span class="text-gray-500 dark:text-gray-400 text-sm flex flex-wrap items-center gap-1"> 29 30 opened by 30 31 {{ template "user/fragments/picHandleLink" .Pull.OwnerDid }}
+5 -6
docs/template.html
··· 120 120 $endif$ 121 121 $endif$ 122 122 </header> 123 - $endif$ 124 - 125 - $if(abstract)$ 126 - <article class="prose dark:prose-invert max-w-none"> 127 - $abstract$ 128 - </article> 123 + $if(abstract)$ 124 + <article class="prose dark:prose-invert max-w-none"> 125 + $abstract$ 126 + </article> 127 + $endif$ 129 128 $endif$ 130 129 131 130 <article class="prose dark:prose-invert max-w-none">
+3
nix/modules/appview.nix
··· 1 1 { 2 + pkgs, 2 3 config, 3 4 lib, 4 5 ... ··· 259 260 after = ["redis-appview.service" "network-online.target"]; 260 261 requires = ["redis-appview.service"]; 261 262 wants = ["network-online.target"]; 263 + 264 + path = [pkgs.diffutils]; 262 265 263 266 serviceConfig = { 264 267 Type = "simple";