mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
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
This commit is contained in:
parent
f286a5abb4
commit
0c721fe016
3 changed files with 4 additions and 5 deletions
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…
Reference in a new issue