diff options
-rw-r--r-- | hyperkitty/static/hyperkitty/css/hyperkitty-overview.css | 2 | ||||
-rw-r--r-- | hyperkitty/templates/overview.html | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/hyperkitty/static/hyperkitty/css/hyperkitty-overview.css b/hyperkitty/static/hyperkitty/css/hyperkitty-overview.css index 07b5f3e..a54c281 100644 --- a/hyperkitty/static/hyperkitty/css/hyperkitty-overview.css +++ b/hyperkitty/static/hyperkitty/css/hyperkitty-overview.css @@ -132,7 +132,7 @@ margin-top: 0; } #discussion-by-category .thread { - margin: 0 0 0 2em; + margin: 0 0 0 0.5em; } #discussion-by-category .thread-stats { margin-left: 0; diff --git a/hyperkitty/templates/overview.html b/hyperkitty/templates/overview.html index 9fc3336..8d521a6 100644 --- a/hyperkitty/templates/overview.html +++ b/hyperkitty/templates/overview.html @@ -91,9 +91,11 @@ style="background-color:{{category.color}}" >{{ category.name|upper }} </h4> + <ul> {% for thread in threads %} - {% include "threads/summary_thread.html" %} + <li>{% include "threads/summary_thread.html" %}</li> {% endfor %} + </ul> {% empty %} <p>No category has been set this month (yet).</p> {% endfor %} |