Skip to content

Commit 9d23c4d

Browse files
authored
Merge pull request #277 from owncloud/backport-261-stable9
Backport of #261 to stable9
2 parents dcef796 + 85050ea commit 9d23c4d

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

css/3rdparty/jquery.tagit.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ ul.tagit {
33
overflow: auto;
44
margin-left: inherit; /* usually we don't want the regular ul margins. */
55
margin-right: inherit;
6+
width: 91.5%;
67
}
78
ul.tagit li {
89
display: block;

css/bookmarks.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,7 @@ li:hover > .tags_actions > em { display : none; }
251251
background: none repeat scroll 0 0 #F8F8F8;
252252
}
253253
#tag_filter .tagit {
254+
display: inline-block;
254255
margin: 0.3em;
255256
}
256257
#tag_filter ul.tagit > li.tagit-new {

js/3rdparty/tag-it.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@
323323
this._tagInput.val('');
324324

325325
// insert tag
326-
this._tagInput.parent().before(tag);
326+
this._tagInput.parent().after(tag);
327327
},
328328
removeTag: function (tag, animate) {
329329
if (typeof animate === 'undefined') {
@@ -362,4 +362,4 @@
362362

363363
});
364364

365-
})(jQuery);
365+
})(jQuery);

0 commit comments

Comments
 (0)