Skip to content

Comments

Fix scrolling on About, Logs, Tuner Management, and Manage Users pages#73

Merged
thehack904 merged 3 commits intomainfrom
copilot/fix-loss-of-scrolling-ability
Feb 14, 2026
Merged

Fix scrolling on About, Logs, Tuner Management, and Manage Users pages#73
thehack904 merged 3 commits intomainfrom
copilot/fix-loss-of-scrolling-ability

Conversation

Copy link
Contributor

Copilot AI commented Feb 14, 2026

Global overflow: hidden rule introduced in v4.3.x for guide page scrolling behavior inadvertently disabled scrolling on all pages.

Changes

  • Scope overflow rule to guide page only: Changed html, body { overflow: hidden } to body.guide-page { overflow: hidden } in base.css
  • Add page identifier: Added class="guide-page" to guide.html body tag
  • Update .gitignore: Exclude SQLite temp files (*.db-shm, *.db-wal)
/* Before */
html, body { height: 100%; overflow: hidden; }

/* After */
body.guide-page { height: 100%; overflow: hidden; }
html { height: 100%; }

This restores default scrolling behavior to about.html, logs.html, change_tuner.html, and manage_users.html while preserving the guide page's intended behavior where only the .guide-outer container scrolls.

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • iptv.lan
    • Triggering command: /usr/bin/python3 python3 app.py (dns block)

If you need me to access, download, or install something from one of these locations, you can either:

Original prompt

This section details on the original issue you should resolve

<issue_title>Loss of scrolling ability on pages: Logs, About, Tuner Management, Manage Users</issue_title>
<issue_description>This is to track the loss of the ability to scroll on any pages that currently go off the screen. This bug was introduced in v.4.3.x due to future feature updates.</issue_description>

<agent_instructions>I need the the ability to scroll in about.html, change_tuner.html, logs.html, manage_users.html. I believe the base.css has this line which is preventing the scrolling on those pages:
/* Make the page itself non-scrollable so only the guide area scrolls */
html, body { height: 100%; overflow: hidden; }</agent_instructions>

Comments on the Issue (you are @copilot in this section)


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

@thehack904 thehack904 marked this pull request as ready for review February 14, 2026 14:33
Copilot AI and others added 2 commits February 14, 2026 14:34
Co-authored-by: thehack904 <35552907+thehack904@users.noreply.github.com>
Co-authored-by: thehack904 <35552907+thehack904@users.noreply.github.com>
Copilot AI changed the title [WIP] Fix loss of scrolling ability on multiple pages Fix scrolling on About, Logs, Tuner Management, and Manage Users pages Feb 14, 2026
Copilot AI requested a review from thehack904 February 14, 2026 14:36
Copy link
Owner

@thehack904 thehack904 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changes have been verified and work.

@thehack904 thehack904 merged commit a88ddb7 into main Feb 14, 2026
1 check passed
@thehack904 thehack904 deleted the copilot/fix-loss-of-scrolling-ability branch February 14, 2026 20:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Loss of scrolling ability on pages: Logs, About, Tuner Management, Manage Users

2 participants