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

Merge pull request #276 from owncloud/backport-261-nc10

Backport of #261 to stable9.1
This commit is contained in:
blizzz 2016-08-07 23:02:59 +02:00 committed by GitHub
commit 6395a6b0d6
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);