From 0ed531503e6a81437642d54274f6a2c62fc6d105 Mon Sep 17 00:00:00 2001 From: rmsitz Date: Wed, 26 Aug 2026 09:17:30 -0400 Subject: [PATCH] Add hover tooltips for truncated sidebar titles Section and lesson names in the course-outline sidebar/tree get clipped with an ellipsis when they don't fit - a title attribute now shows the full text on hover. Co-Authored-By: Claude Sonnet 5 --- CHANGELOG.md | 1 + VERSION | 2 +- templates/_course_tree.html | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb34210..6d5e6e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ +2026-08-26 13:17 UTC — Add hover tooltips for truncated sidebar titles 2026-08-26 13:12 UTC — Add course outline sidebar to the lesson page 2026-08-25 12:25 UTC — Remove unreliable duplicate-lesson-file matching 2026-08-25 00:33 UTC — Widen thumbnail sampling window past platform bumpers diff --git a/VERSION b/VERSION index 159c086..43dccd4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2026-08-26 13:12 UTC — add course outline sidebar to the lesson page +2026-08-26 13:17 UTC — add hover tooltips for truncated sidebar titles diff --git a/templates/_course_tree.html b/templates/_course_tree.html index 9f5120e..d87372c 100644 --- a/templates/_course_tree.html +++ b/templates/_course_tree.html @@ -22,7 +22,7 @@
{{ icons.icon('folder', 16) }} - {{ node.name }} + {{ node.name }} {% if stats.total_lessons %}{{ stats.completed_lessons }}/{{ stats.total_lessons }} watched{% else %}Empty{% endif %} @@ -52,7 +52,7 @@ {% elif lesson.lesson_type == 'mixed' %}{{ icons.icon('package', 16) }} {% else %}{{ icons.icon('file-text', 16) }}{% endif %} - {{ lesson.title }} + {{ lesson.title }}
{{ lesson.lesson_type|title }}