summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2019-02-06 08:09:13 +0100
committerzeripath <art27@cantab.net>2019-02-06 07:09:13 +0000
commit0c721fe016919e368e105142d45efcd4d477757b (patch)
tree6f1772bf2f48dc1000828d5e032e9cdc6e401ecf /templates
parentf286a5abb42f94d7c597f41b25990f2ccee0bb77 (diff)
downloadgitea-0c721fe016919e368e105142d45efcd4d477757b.tar.gz
gitea-0c721fe016919e368e105142d45efcd4d477757b.zip
UI: Dashboard tweaks (#5974)
- Don't show divider below heatmap when it's hidden via media-query - Make divider between user menu adhere to container width - Remove excessiv margins on heatmap
Diffstat (limited to 'templates')
-rw-r--r--templates/user/dashboard/dashboard.tmpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/user/dashboard/dashboard.tmpl b/templates/user/dashboard/dashboard.tmpl
index c63b47a3dc..d6237b31f2 100644
--- a/templates/user/dashboard/dashboard.tmpl
+++ b/templates/user/dashboard/dashboard.tmpl
@@ -4,7 +4,7 @@
<div class="ui container">
{{template "base/alert" .}}
<div class="ui mobile reversed stackable grid">
- <div class="ten wide column">
+ <div class="ui container ten wide column">
{{if .EnableHeatmap}}
<div id="user-heatmap" style="padding-right: 40px">
<activity-heatmap :locale="locale" :suburl="suburl" :user="heatmapUser">
@@ -12,8 +12,8 @@
<div class="ui active centered inline indeterminate text loader" id="loading-heatmap">{{.i18n.Tr "user.heatmap.loading"}}</div>
</div>
</activity-heatmap>
+ <div class="ui divider"></div>
</div>
- <div class="ui divider"></div>
{{end}}
{{template "user/dashboard/feeds" .}}
</div>