#How do I make the MacOS "decorations" solid?

9 messages · Page 1 of 1 (latest)

frank quarry
#

As shown in the video, I've got this awful-looking issue where the webview will "bleed through" the window decorations, I use the complete default configuration for this (no custom decorations or anything), I would like it to be solid and not have the webview scroll through it, is there anything I should do to prevent this? 🙏

#

At some point I will create a custom "window chrome/decoration", but for now, I'd just like the default to not have this bleeding happening haha.

olive horizon
#

i've never seen this before i think\

#

macos 26?

#

I use the complete default configuration for this (no custom decorations or anything)
no titleBarStyle or trafficLightPosition either right?

frank quarry
frank quarry
#

I've certainly been a bit confused by it.

frank quarry
#

Sorta figured it out, though I still have no idea why it would scroll beyond the "webview boundaries" (is the native decoration included in that? haha).

It was because the <html> container was overriding as the primary scroll on this tab, I had to explicitly set overflow: hidden; on it, and then add height: -webkit-fill-available on my "profile UI" container to get the scrollbar to render there instead.

Not sure why I need the fill-available directive, a bit non-standard, but it works! So that's good haha!

☝️ Leaving this here in case it helps anyone in the future searching... I imagine others might bump in to that potentially.