From 773f0061c48f46a9f44abd5f9c5e445c0fa3dd1c Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 24 Oct 2011 22:59:50 -0400 Subject: [PATCH] Added a bit of bottom margin to the new tag widgets --- apps/main/templates/base.html | 1 + apps/tags/widgets.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/main/templates/base.html b/apps/main/templates/base.html index d611749921..1a656df0d7 100644 --- a/apps/main/templates/base.html +++ b/apps/main/templates/base.html @@ -83,6 +83,7 @@ box-shadow: 1px 1px 2px #888; text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #fff, 0 0 70px #fff, 0 0 80px #fff, 0 0 100px #fff, 0 0 150px #fff; + margin-bottom: 2px; } .tags li:after { diff --git a/apps/tags/widgets.py b/apps/tags/widgets.py index 571a462d8e..d201516255 100644 --- a/apps/tags/widgets.py +++ b/apps/tags/widgets.py @@ -14,7 +14,7 @@ def get_tags_inline_widget(document): 'tag_string': _(u'Tags'), 'tag_count': tag_count}) for tag in document.tags.all(): - tags_template.append(u'' % (tag.tagproperties_set.get().get_color_code(), tag.name)) + tags_template.append(u'' % (tag.tagproperties_set.get().get_color_code(), tag.name)) tags_template.append(u'
') tags_template.append(u'')