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
release/v1.8
silverwind 5 years ago committed by zeripath
parent f286a5abb4
commit 0c721fe016

File diff suppressed because one or more lines are too long

@ -598,10 +598,9 @@ footer {
margin-bottom: 2px !important;
}
#user-heatmap{
#user-heatmap {
width: 107%; // Fixes newest contributions not showing
text-align: center;
margin: 40px 0 30px;
svg:not(:root) {
overflow: inherit;

@ -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>

Loading…
Cancel
Save