diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-10 23:47:01 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-10 23:47:01 +0800 |
commit | 37d06318440f4db057e3d3b4739c774fa0e7f110 (patch) | |
tree | dc21a4d20c0d65f0061df0da0c1cc674ba997d09 /templates/repo_index.tmpl | |
parent | css: Make --danger-color actually red (diff) | |
download | forge-37d06318440f4db057e3d3b4739c774fa0e7f110.tar.gz forge-37d06318440f4db057e3d3b4739c774fa0e7f110.tar.zst forge-37d06318440f4db057e3d3b4739c774fa0e7f110.zip |
css, html: Rounded corners
Diffstat (limited to '')
-rw-r--r-- | templates/repo_index.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/repo_index.tmpl b/templates/repo_index.tmpl index 4eb0345..d0c65c0 100644 --- a/templates/repo_index.tmpl +++ b/templates/repo_index.tmpl @@ -12,7 +12,7 @@ <body class="repo-index"> {{- template "header" . -}} <div class="padding-wrapper"> - <table id="repo-info-table"> + <table id="repo-info-table" class="rounded"> <thead> <tr class="title-row"> <th colspan="2">Repo info</th> @@ -49,7 +49,7 @@ </div> {{- if .commits -}} <div class="padding-wrapper scroll"> - <table id="recent-commits" class="wide"> + <table id="recent-commits" class="wide rounded"> <thead> <tr class="title-row"> <th colspan="3">Recent commits (<a href="log/{{- if .ref_type -}}?{{- .ref_type -}}={{- .ref_name -}}{{- end -}}">see all</a>)</th> @@ -78,7 +78,7 @@ {{- end -}} {{- if .files -}} <div class="padding-wrapper scroll"> - <table id="file-tree" class="wide"> + <table id="file-tree" class="wide rounded"> <thead> <tr class="title-row"> <th colspan="3">/{{- if .ref_name -}} on {{- .ref_name -}}{{- end -}}</th> |