Added space after tags in tag input

This commit is contained in:
Marcin Kurczewski 2015-02-14 14:00:16 +01:00
parent a59a57fe70
commit 4cad09b85e
2 changed files with 2 additions and 2 deletions

View file

@ -210,7 +210,7 @@ input[type=checkbox]:focus + label {
} }
.tag-input li a.close { .tag-input li a.close {
font-size: 85%; font-size: 85%;
margin-left: 0.75em; margin-left: 0.5em;
} }
.related-tags { .related-tags {

View file

@ -288,7 +288,7 @@ App.Controls.TagInput = function($underlyingInput) {
$elem.attr('data-tag', tagName.toLowerCase()); $elem.attr('data-tag', tagName.toLowerCase());
var $tagLink = jQuery('<a class="tag">'); var $tagLink = jQuery('<a class="tag">');
$tagLink.text(tagName); $tagLink.text(tagName + ' ' /* for easy copying */);
$tagLink.click(function(e) { $tagLink.click(function(e) {
e.preventDefault(); e.preventDefault();
showOrHideSiblings(tagName); showOrHideSiblings(tagName);