From 0735c9f70ca118a599fdd203bb9f135158a67395 Mon Sep 17 00:00:00 2001 From: maTh <1645099+math-GH@users.noreply.github.com> Date: Fri, 1 Nov 2024 16:32:04 +0100 Subject: Fixed: article footer dropdowns (my labels, article tags, sharing) (#6959) * fix dropdown triangle in mobile view * Nord theme * mobile view: width improved. Each theme can decide about border-radius * Ansum/Mapco theme * fix pink dark theme: label icon in pink now too * my labels: line breaks improved * article tags: headline added --- p/scripts/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'p/scripts') diff --git a/p/scripts/main.js b/p/scripts/main.js index 9e243a519..f35fa35df 100644 --- a/p/scripts/main.js +++ b/p/scripts/main.js @@ -1455,7 +1455,7 @@ function loadDynamicTags(div) { (context.anonymous ? '' : 'class="checkboxTag" ') + 'name="t_' + tag.id + '"type="checkbox" ' + (context.anonymous ? 'disabled="disabled" ' : '') + - (tag.checked ? 'checked="checked" ' : '') + '/> ' + tag.name + ''; + (tag.checked ? 'checked="checked" ' : '') + '/>' + tag.name + ''; datalist += ''; } if (context.anonymous && nbLabelsChecked === 0) { -- cgit v1.2.3