Browse Source

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
for-closed-social
silverwind 5 years ago
committed by zeripath
parent
commit
0c721fe016
3 changed files with 4 additions and 5 deletions
  1. +1
    -1
      public/css/index.css
  2. +1
    -2
      public/less/_base.less
  3. +2
    -2
      templates/user/dashboard/dashboard.tmpl

+ 1
- 1
public/css/index.css
File diff suppressed because it is too large
View File


+ 1
- 2
public/less/_base.less View File

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

+ 2
- 2
templates/user/dashboard/dashboard.tmpl View File

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