fix(ui): remove opaque corner fillets on transparent window#5
Open
thanhleviet wants to merge 1 commit intophuc-nt:mainfrom
Open
fix(ui): remove opaque corner fillets on transparent window#5thanhleviet wants to merge 1 commit intophuc-nt:mainfrom
thanhleviet wants to merge 1 commit intophuc-nt:mainfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Problem
The window had
transparent: falsein Tauri config, so macOS drew an opaque rectangular frame behind the CSSborder-radius: 14pxon#overlay-viewand#settings-view. This made the four corner areas visibly opaque — appearing as small rectangular "fillets" that broke the rounded corner appearance.Fix
transparent: true— makes the native window background clear so CSS rounded corners show through to the desktopshadow: false— disables the macOS system window shadow, which is rectangular and would peek out behind the rounded CSS shapeclip-path: inset(0 round 14px)— hard-clips each view's rendering (includingbackdrop-filterblur which can leak outsideborder-radiuson WebKit) to the rounded rectanglebox-shadowfrom both views — on a transparent window, the dark drop shadows would float visibly in the transparent corner areaBeautiful app — the glassmorphism design, clean TTS provider abstractions, and the vanilla JS + Tauri architecture make this a joy to work with.