diff options
author | Adam Strzelecki <ono@java.pl> | 2015-12-03 00:03:49 +0100 |
---|---|---|
committer | Adam Strzelecki <ono@java.pl> | 2015-12-03 14:21:20 +0100 |
commit | edbb67cb3fd8e56d6ce18e27c5398fa7282a8cf5 (patch) | |
tree | f21dc41c531a999d84126966b559e3b39f8a854c /templates/repo/commits_table.tmpl | |
parent | 37a372f6f57d3c59364af2ed0fc21a58e31146d2 (diff) | |
download | gitea-edbb67cb3fd8e56d6ce18e27c5398fa7282a8cf5.tar.gz gitea-edbb67cb3fd8e56d6ce18e27c5398fa7282a8cf5.zip |
UI: Use more subtle grey SHA1 labels
Current green SHA1 labels are more pronounced than other UI elements attracting
attention as if they were most important thing in the UI, while they are not as
important, especially without real Git client.
Using grey SHA1 labels makes the UI more balanced, less aggressive and lets
user to focus on other content elements.
NOTE: Neither GitHub or Bitbucket uses so heavy pronunciation as Gogs.
Diffstat (limited to 'templates/repo/commits_table.tmpl')
-rw-r--r-- | templates/repo/commits_table.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/commits_table.tmpl b/templates/repo/commits_table.tmpl index 35c7a48cc7..f87866bf44 100644 --- a/templates/repo/commits_table.tmpl +++ b/templates/repo/commits_table.tmpl @@ -36,7 +36,7 @@ {{end}} </td> <td class="message collapsing"> - <a rel="nofollow" class="ui green sha label" href="{{AppSubUrl}}/{{$.Username}}/{{$.Reponame}}/commit/{{.ID}}">{{ShortSha .ID.String}}</a> + <a rel="nofollow" class="ui sha label" href="{{AppSubUrl}}/{{$.Username}}/{{$.Reponame}}/commit/{{.ID}}">{{ShortSha .ID.String}}</a> {{RenderCommitMessage .Summary $.RepoLink}} </td> <td class="grey text right aligned">{{TimeSince .Author.When $.Lang}}</td> |