1
0
mirror of https://github.com/owncloud/bookmarks.git synced 2025-02-26 23:54:25 +01:00

Backport of #261 to stable8.2

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 b74b4d9147
commit 597529b30c
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; 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);