diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/repo_commit.html.tmpl | 4 | ||||
-rw-r--r-- | templates/repo_index.html.tmpl | 10 | ||||
-rw-r--r-- | templates/repo_log.html.tmpl | 2 | ||||
-rw-r--r-- | templates/repo_raw_dir.html.tmpl | 4 | ||||
-rw-r--r-- | templates/repo_tree_dir.html.tmpl | 6 |
5 files changed, 14 insertions, 12 deletions
diff --git a/templates/repo_commit.html.tmpl b/templates/repo_commit.html.tmpl index 3deec3d..c480c92 100644 --- a/templates/repo_commit.html.tmpl +++ b/templates/repo_commit.html.tmpl @@ -6,7 +6,7 @@ <title>{{ .group_name }}/repos/{{ .repo_name }} – Lindenii Forge</title> </head> <body class="repo-commit"> - <div class="padding-wrapper"> + <div class="padding-wrapper scroll"> <table id="commit-info-table"> <thead> <tr class="title-row"> @@ -40,6 +40,8 @@ </tr> </tbody> </table> + </div> + <div class="padding-wrapper scroll"> <pre>{{ .patch }}</pre> <p> </p> diff --git a/templates/repo_index.html.tmpl b/templates/repo_index.html.tmpl index 216e5f4..84ce662 100644 --- a/templates/repo_index.html.tmpl +++ b/templates/repo_index.html.tmpl @@ -6,8 +6,8 @@ <title>{{ .group_name }}/repos/{{ .repo_name }} – Lindenii Forge</title> </head> <body class="repo-index"> - <div class="padding-wrapper"> - <table id="recent-commits"> + <div class="padding-wrapper scroll"> + <table id="recent-commits" class="wide"> <thead> <tr class="title-row"> <th colspan="3">Recent Commits (<a href="log/{{ .ref }}/">see all</a>)</th> @@ -33,8 +33,8 @@ </tbody> </table> </div> - <div class="padding-wrapper"> - <table id="file-tree"> + <div class="padding-wrapper scroll"> + <table id="file-tree" class="wide"> <thead> <tr class="title-row"> <th colspan="3">/ on {{ .ref }}</th> @@ -63,7 +63,7 @@ </div> <div class="padding-wrapper"> {{ if .readme }} - <table> + <table class="wide"> <thead> <tr class="title-row"> <th> diff --git a/templates/repo_log.html.tmpl b/templates/repo_log.html.tmpl index 9054c2d..74b9c3f 100644 --- a/templates/repo_log.html.tmpl +++ b/templates/repo_log.html.tmpl @@ -6,7 +6,7 @@ <title>Log of {{ .group_name }}/repos/{{ .repo_name }} – Lindenii Forge</title> </head> <body class="repo-index"> - <table id="recent-commits"> + <table id="commits" class="wide"> <thead> <tr class="title-row"> <th colspan="4">Commits on {{ .ref }}</th> diff --git a/templates/repo_raw_dir.html.tmpl b/templates/repo_raw_dir.html.tmpl index d2a280c..6574ed4 100644 --- a/templates/repo_raw_dir.html.tmpl +++ b/templates/repo_raw_dir.html.tmpl @@ -6,8 +6,8 @@ <title>{{ .group_name }}/repos/{{ .repo_name }}/{{ .path_spec }}{{ if ne .path_spec "" }}/{{ end }} – Lindenii Forge</title> </head> <body class="repo-tree-dir"> - <div class="padding-wrapper"> - <table id="file-tree"> + <div class="padding-wrapper scroll"> + <table id="file-tree" class="wide"> <thead> <tr class="title-row"> <th colspan="3"> diff --git a/templates/repo_tree_dir.html.tmpl b/templates/repo_tree_dir.html.tmpl index 99b6236..7db2035 100644 --- a/templates/repo_tree_dir.html.tmpl +++ b/templates/repo_tree_dir.html.tmpl @@ -6,8 +6,8 @@ <title>{{ .group_name }}/repos/{{ .repo_name }}/{{ .path_spec }}{{ if ne .path_spec "" }}/{{ end }} – Lindenii Forge</title> </head> <body class="repo-tree-dir"> - <div class="padding-wrapper"> - <table id="file-tree"> + <div class="padding-wrapper scroll"> + <table id="file-tree" class="wide"> <thead> <tr class="title-row"> <th colspan="3"> @@ -38,7 +38,7 @@ </div> <div class="padding-wrapper"> {{ if .readme }} - <table> + <table class="wide"> <thead> <tr class="title-row"> <th> |