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

Backport of #261 to stable9.1

Make tag filter bar visible

Full width tag filter bar

Ensure the tag filter bar is as large as the one for adding bookmarks

Tags under filter search bar

Ensure the selected tags appear below the tags filter search bar.

Update bookmarks.css
This commit is contained in:
Tim 2016-07-01 03:36:20 +02:00 committed by Arthur Schiwon
parent 6458c5add8
commit 2610bb8005
No known key found for this signature in database
GPG Key ID: 7424F1874854DF23
3 changed files with 4 additions and 2 deletions

View File

@ -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;

View File

@ -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 {

View File

@ -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') {
@ -362,4 +362,4 @@
});
})(jQuery);
})(jQuery);