From 375838449f4a9c43c0226d84f376ab9fd38c0741 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Mon, 9 Feb 2026 19:55:57 +0200 Subject: [PATCH 1/3] fix(geomap): z-index issues with toolbar and buttons (closes #8649) --- apps/client/src/widgets/collections/geomap/index.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/client/src/widgets/collections/geomap/index.css b/apps/client/src/widgets/collections/geomap/index.css index 285a3be5a7..4daaada2cb 100644 --- a/apps/client/src/widgets/collections/geomap/index.css +++ b/apps/client/src/widgets/collections/geomap/index.css @@ -7,7 +7,7 @@ > .collection-properties { position: relative; - z-index: 2000; + z-index: 998; } } @@ -22,7 +22,7 @@ .leaflet-top, .leaflet-bottom { - z-index: 997; + z-index: 997 !important; } .geo-view.placing-note .geo-map-container { From 5b1a2d93bfb49eb4f1536df49282e43fad83715b Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Mon, 9 Feb 2026 20:20:20 +0200 Subject: [PATCH 2/3] fix(tree): child note badge overlapping text (closes #8567) --- apps/client/src/widgets/note_tree.css | 1 - apps/client/src/widgets/note_tree.ts | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/client/src/widgets/note_tree.css b/apps/client/src/widgets/note_tree.css index dbcb66cbc1..8c4f6ad426 100644 --- a/apps/client/src/widgets/note_tree.css +++ b/apps/client/src/widgets/note_tree.css @@ -9,7 +9,6 @@ border-radius: 0.5em; font-size: 0.7rem; font-weight: normal; - float: right; vertical-align: middle; } diff --git a/apps/client/src/widgets/note_tree.ts b/apps/client/src/widgets/note_tree.ts index 68b0310684..5c2aadb1ea 100644 --- a/apps/client/src/widgets/note_tree.ts +++ b/apps/client/src/widgets/note_tree.ts @@ -1992,7 +1992,7 @@ function buildEnhanceTitle() { if (isSubtreeHidden && count > 0) { const $badge = $(`${count}`); $badge.attr("title", t("note_tree.subtree-hidden-tooltip", { count })); - $span.find(".fancytree-title").append($badge); + $span.append($badge); } }; } From a664057312835db6dc90c57d24c592cfaae4e152 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Mon, 9 Feb 2026 20:22:41 +0200 Subject: [PATCH 3/3] fix(website): missing RPM GPG key (closes #8618) --- {docs => apps/website/public}/RPM-GPG-KEY-trilium | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {docs => apps/website/public}/RPM-GPG-KEY-trilium (100%) diff --git a/docs/RPM-GPG-KEY-trilium b/apps/website/public/RPM-GPG-KEY-trilium similarity index 100% rename from docs/RPM-GPG-KEY-trilium rename to apps/website/public/RPM-GPG-KEY-trilium