From 002d47b4d91f81b91bb9025a438c7f46c9ab3fe1 Mon Sep 17 00:00:00 2001 From: Jermolene Date: Tue, 18 Nov 2014 14:07:00 +0000 Subject: [PATCH] Fix wrapping of tags in tag manager Now long tags wrap onto multiple lines. I think they look quite good, and we may want to consider using the same technique in the view template. --- core/ui/TagManager.tid | 2 +- themes/tiddlywiki/vanilla/base.tid | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/core/ui/TagManager.tid b/core/ui/TagManager.tid index dfb6db83e..d6ba36dcb 100644 --- a/core/ui/TagManager.tid +++ b/core/ui/TagManager.tid @@ -37,7 +37,7 @@ $title$$(currentTiddler)$ \end - +
diff --git a/themes/tiddlywiki/vanilla/base.tid b/themes/tiddlywiki/vanilla/base.tid index 606a98b95..7abe17862 100644 --- a/themes/tiddlywiki/vanilla/base.tid +++ b/themes/tiddlywiki/vanilla/base.tid @@ -354,6 +354,10 @@ button.tc-untagged-label { fill: <>; } +.tc-tag-manager-table .tc-tag-label { + white-space: normal; +} + .tc-tag-manager-tag { width: 100%; }
<>