diff options
Diffstat (limited to '')
-rw-r--r-- | static/style.css | 3 | ||||
-rw-r--r-- | templates/repo_tree_file.html.tmpl | 10 |
2 files changed, 9 insertions, 4 deletions
diff --git a/static/style.css b/static/style.css index 043da38..7869708 100644 --- a/static/style.css +++ b/static/style.css @@ -53,6 +53,9 @@ footer a:link, footer a:visited { max-width: 60rem; padding: 0 5px; } +.padding { + padding: 0 5px; +} a:link, a:visited { text-decoration-color: var(--text-decoration-color); color: var(--link-color); diff --git a/templates/repo_tree_file.html.tmpl b/templates/repo_tree_file.html.tmpl index be78efd..6931c4e 100644 --- a/templates/repo_tree_file.html.tmpl +++ b/templates/repo_tree_file.html.tmpl @@ -8,10 +8,12 @@ </head> <body class="repo-tree-file"> {{ template "header" . }} - <p> - /{{ .path_spec }} (<a href="/{{ .group_name }}/:/repos/{{ .repo_name }}/raw/{{ .path_spec }}{{ if not (eq .ref_type "head") }}?{{ .ref_type }}={{ .ref }}{{ end }}">raw</a>) - </p> - {{ .file_contents }} + <div class="padding"> + <p> + /{{ .path_spec }} (<a href="/{{ .group_name }}/:/repos/{{ .repo_name }}/raw/{{ .path_spec }}{{ if not (eq .ref_type "head") }}?{{ .ref_type }}={{ .ref }}{{ end }}">raw</a>) + </p> + {{ .file_contents }} + </div> <footer> {{ template "footer" . }} </footer> |