aboutsummaryrefslogtreecommitdiffstats
path: root/templates/repo/commits_list.tmpl
diff options
context:
space:
mode:
authorGusted <williamzijl7@hotmail.com>2022-05-16 16:45:12 +0000
committerGitHub <noreply@github.com>2022-05-16 18:45:12 +0200
commitbcf13b670baa6c0f12a9cc3b26d13374f9d9fc8b (patch)
treee942021ad0520023fb11e39f4d1931b51f0eccb0 /templates/repo/commits_list.tmpl
parent71ca131582fff51da614291732ed43b2bf48d8a1 (diff)
downloadgitea-bcf13b670baa6c0f12a9cc3b26d13374f9d9fc8b.tar.gz
gitea-bcf13b670baa6c0f12a9cc3b26d13374f9d9fc8b.zip
Improve commit list/view on mobile (#19712)
- This is a continuation on [the work](https://github.com/go-gitea/gitea/pull/19546) I've done for improving mobile experience on Gitea. - The current behavior of going trough the commits list is horrible, each individual item gets it's own row and thereby isn't quite compact as it should be on mobile. The commit view's header is in a bit better state, it's quite only that content is overlapping each other. - This patch fixes those problems. Each row in the commit list table will actually take a row in the UI. The commit view's header has now a better organized way of placing the information.
Diffstat (limited to 'templates/repo/commits_list.tmpl')
-rw-r--r--templates/repo/commits_list.tmpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/repo/commits_list.tmpl b/templates/repo/commits_list.tmpl
index 86ad835202..65baee6b63 100644
--- a/templates/repo/commits_list.tmpl
+++ b/templates/repo/commits_list.tmpl
@@ -1,5 +1,5 @@
-<div class="ui attached table segment">
- <table class="ui very basic striped fixed table single line" id="commits-table">
+<div class="ui attached table segment commit-table">
+ <table class="ui very basic striped table unstackable fixed" id="commits-table">
<thead>
<tr>
<th class="four wide">{{.i18n.Tr "repo.commits.author"}}</th>