From 56f32c035c45a7f7e0199eeaf53af61e8d0acf4e Mon Sep 17 00:00:00 2001 From: Máirín Duffy Date: Thu, 26 Sep 2013 18:30:10 -0400 Subject: adjusted category badges on list overview --- hyperkitty/static/hyperkitty/css/hyperkitty-threadslist.css | 6 ++++++ hyperkitty/templates/threads/summary_thread.html | 10 +++++----- 2 files changed, 11 insertions(+), 5 deletions(-) (limited to 'hyperkitty') diff --git a/hyperkitty/static/hyperkitty/css/hyperkitty-threadslist.css b/hyperkitty/static/hyperkitty/css/hyperkitty-threadslist.css index 629442b..6effca1 100644 --- a/hyperkitty/static/hyperkitty/css/hyperkitty-threadslist.css +++ b/hyperkitty/static/hyperkitty/css/hyperkitty-threadslist.css @@ -73,6 +73,12 @@ float: left; } +.thread-title .category { + width: 15%; + text-align: center; + margin-right: 1%; +} + .thread-info .tags { display: inline; margin-right: 1em; diff --git a/hyperkitty/templates/threads/summary_thread.html b/hyperkitty/templates/threads/summary_thread.html index a6857e5..e9b2b1f 100644 --- a/hyperkitty/templates/threads/summary_thread.html +++ b/hyperkitty/templates/threads/summary_thread.html @@ -8,6 +8,11 @@ + {% if thread.category %} + + {{ thread.category.name|upper }} + + {% endif %} {% if thread.unread %} {% endif %} @@ -15,11 +20,6 @@
    - {% if thread.category %} - - {{ thread.category.name|upper }} - - {% endif %}
  • {{ thread.participants|length }}
  • -- cgit