openclaw - 💡(How to fix) Fix [Bug]: Right side scroll bar missing on Mac (Sequoia) in Chrome [1 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
openclaw/openclaw#50120Fetched 2026-04-08 00:58:59
View on GitHub
Comments
0
Participants
1
Timeline
0
Reactions
0

No right-side scroll bar in the OpenClaw webchat UI on macOS with Chrome. Still reproducible on v2026.3.13.

Original issue: #11384 — closed by stale bot, not fixed.

Root Cause

No right-side scroll bar in the OpenClaw webchat UI on macOS with Chrome. Still reproducible on v2026.3.13.

Original issue: #11384 — closed by stale bot, not fixed.

RAW_BUFFERClick to expand / collapse

Summary

No right-side scroll bar in the OpenClaw webchat UI on macOS with Chrome. Still reproducible on v2026.3.13.

Original issue: #11384 — closed by stale bot, not fixed.

Steps to reproduce

  1. Open OpenClaw webchat in Chrome on macOS Sequoia
  2. Mac "Show scroll bars: Always" is configured in System Settings
  3. Scroll bars appear on all other websites
  4. OpenClaw webchat — no scroll bar visible

Expected behavior

Scroll bar visible on the right side of the chat window, consistent with macOS system setting and other websites.

Actual behavior

No scroll bar. Makes it difficult to scroll up through long chat responses.

Environment

  • OpenClaw: 2026.3.13
  • OS: macOS Sequoia 15.x (arm64)
  • Browser: Chrome
  • Install method: Homebrew

Notes

Previously filed as #11384, auto-closed as stale. Reposting with updated version info as the issue persists.

extent analysis

Fix Plan

The fix involves modifying the CSS to ensure the scrollbar is always visible on macOS with Chrome.

Steps to Fix

  • Add the following CSS rule to the OpenClaw webchat stylesheet:
.chat-window {
  overflow-y: scroll;
}
  • Alternatively, if the above does not work, try using the ::-webkit-scrollbar pseudo-element to force the scrollbar to be visible:
.chat-window {
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #666 #fff;
}

.chat-window::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.chat-window::-webkit-scrollbar-thumb {
  background-color: #666;
  border-radius: 10px;
}

.chat-window::-webkit-scrollbar-track {
  background-color: #fff;
}

Verification

After applying the CSS fix, verify that the scrollbar is visible on the right side of the chat window by following the original steps to reproduce the issue.

Extra Tips

  • Ensure that the CSS rules are applied to the correct HTML element (in this case, .chat-window).
  • If using a CSS preprocessor like Sass or Less, modify the code accordingly.
  • Test the fix in different browsers and operating systems to ensure consistency.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

FAQ

Expected behavior

Scroll bar visible on the right side of the chat window, consistent with macOS system setting and other websites.

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING