Skip to content

Commit

Permalink
Merge pull request #278 from owncloud/backport-261-stable8.2
Browse files Browse the repository at this point in the history
Backport of #261 to stable8.2
  • Loading branch information
blizzz authored Aug 7, 2016
2 parents b74b4d9 + 597529b commit f7e2fac
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions css/3rdparty/jquery.tagit.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ ul.tagit {
overflow: auto;
margin-left: inherit; /* usually we don't want the regular ul margins. */
margin-right: inherit;
width: 91.5%;
}
ul.tagit li {
display: block;
Expand Down
1 change: 1 addition & 0 deletions css/bookmarks.css
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@ li:hover > .tags_actions > em { display : none; }
background: none repeat scroll 0 0 #F8F8F8;
}
#tag_filter .tagit {
display: inline-block;
margin: 0.3em;
}
#tag_filter ul.tagit > li.tagit-new {
Expand Down
4 changes: 2 additions & 2 deletions js/3rdparty/tag-it.js
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@
this._tagInput.val('');

// insert tag
this._tagInput.parent().before(tag);
this._tagInput.parent().after(tag);
},
removeTag: function (tag, animate) {
if (typeof animate === 'undefined') {
Expand Down Expand Up @@ -362,4 +362,4 @@

});

})(jQuery);
})(jQuery);

0 comments on commit f7e2fac

Please sign in to comment.