From 38c1132e3f4aac4f9c5a3005fe6e470004173ba6 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Mon, 12 May 2025 18:17:49 +0200 Subject: [PATCH] wip #7461 @0.5 --- js/libs/fluidbook/fluidbook.burger.js | 4 +++- style/burger.less | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/js/libs/fluidbook/fluidbook.burger.js b/js/libs/fluidbook/fluidbook.burger.js index 7ba839e4..2119ffaa 100644 --- a/js/libs/fluidbook/fluidbook.burger.js +++ b/js/libs/fluidbook/fluidbook.burger.js @@ -14,7 +14,9 @@ FluidbookBurger.prototype = { var a = credits.find('a'); var t = a.text(); credits.find('a').text(t); - $("#menuList").append(credits); + let li=$('
  • '); + li.append(credits); + $("#menuList > ul").append(li); // Insert Chapters submenus if (this.chaptersMenuHTML !== '') { diff --git a/style/burger.less b/style/burger.less index 7d7de1b6..400174a3 100644 --- a/style/burger.less +++ b/style/burger.less @@ -277,7 +277,7 @@ html.mm-opening .mm-menu.mm-opened[class*=mm-pagedim] ~ #mm-blocker { border-radius: 0; height: 60px; font-size: 16px; - padding: 0 1em 0 70px; + padding: 0 1em 0 64px; width: 260px; border: transparent 6px solid; -- 2.39.5