1
0
mirror of https://github.com/owncloud/bookmarks.git synced 2025-03-10 10:29:20 +01:00

Merge pull request #261 from TtuxX/master

Restore broken tag selection functionality
This commit is contained in:
blizzz 2016-08-07 22:42:51 +02:00 committed by GitHub
commit 8fcf165ed7
3 changed files with 4 additions and 2 deletions

View File

@ -3,6 +3,7 @@ ul.tagit {
overflow: auto; overflow: auto;
margin-left: inherit; /* usually we don't want the regular ul margins. */ margin-left: inherit; /* usually we don't want the regular ul margins. */
margin-right: inherit; margin-right: inherit;
width: 91.5%;
} }
ul.tagit li { ul.tagit li {
display: block; display: block;

View File

@ -251,6 +251,7 @@ li:hover > .tags_actions > em { display : none; }
background: none repeat scroll 0 0 #F8F8F8; background: none repeat scroll 0 0 #F8F8F8;
} }
#tag_filter .tagit { #tag_filter .tagit {
display: inline-block;
margin: 0.3em; margin: 0.3em;
} }
#tag_filter ul.tagit > li.tagit-new { #tag_filter ul.tagit > li.tagit-new {

View File

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