From 642df90adb3f265510b3320e3ad2d22d1502b6e4 Mon Sep 17 00:00:00 2001 From: Tim Date: Fri, 1 Jul 2016 03:36:20 +0200 Subject: [PATCH 1/4] Make tag filter bar visible --- css/bookmarks.css | 1 + 1 file changed, 1 insertion(+) diff --git a/css/bookmarks.css b/css/bookmarks.css index d8de09f8..5f0aeac6 100644 --- a/css/bookmarks.css +++ b/css/bookmarks.css @@ -263,6 +263,7 @@ li:hover > .tags_actions > em { display : none; } } #tag_filter a { + display: inline-block; display: inline; float: none; margin: 0; From 215f19a1e5db35ec92eb8be8d8111e0b9462c770 Mon Sep 17 00:00:00 2001 From: Tim Date: Fri, 1 Jul 2016 03:38:16 +0200 Subject: [PATCH 2/4] Full width tag filter bar Ensure the tag filter bar is as large as the one for adding bookmarks --- css/3rdparty/jquery.tagit.css | 1 + 1 file changed, 1 insertion(+) diff --git a/css/3rdparty/jquery.tagit.css b/css/3rdparty/jquery.tagit.css index 1e7e0239..ae814986 100644 --- a/css/3rdparty/jquery.tagit.css +++ b/css/3rdparty/jquery.tagit.css @@ -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; From 46b177ab5dd7d7473f29577681929a7960c21816 Mon Sep 17 00:00:00 2001 From: Tim Date: Fri, 1 Jul 2016 03:41:39 +0200 Subject: [PATCH 3/4] Tags under filter search bar Ensure the selected tags appear below the tags filter search bar. --- js/3rdparty/tag-it.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/3rdparty/tag-it.js b/js/3rdparty/tag-it.js index dc67e8bb..f16d021f 100644 --- a/js/3rdparty/tag-it.js +++ b/js/3rdparty/tag-it.js @@ -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); \ No newline at end of file +})(jQuery); From b3e0893d1f2754594b0320c55c53955433a23b01 Mon Sep 17 00:00:00 2001 From: Tim Date: Fri, 1 Jul 2016 04:35:49 +0200 Subject: [PATCH 4/4] Update bookmarks.css --- css/bookmarks.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/bookmarks.css b/css/bookmarks.css index 5f0aeac6..1e922b29 100644 --- a/css/bookmarks.css +++ b/css/bookmarks.css @@ -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 { @@ -263,7 +264,6 @@ li:hover > .tags_actions > em { display : none; } } #tag_filter a { - display: inline-block; display: inline; float: none; margin: 0;