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'')