diff options
| author | Christophe Besson <cbesson@gmail.com> | 2026-08-26 01:54:36 +0200 |
|---|---|---|
| committer | Christophe Besson <cbesson@gmail.com> | 2026-08-26 01:54:36 +0200 |
| commit | 7126fd3c265ba75d77b449bfd0f83f5f3e584b74 (patch) | |
| tree | a0e47a109fd5a9a719967b695a400bb99a5cb237 /packages | |
| parent | ba7677290a2f2963295f1c015cdb90fe86ef63da (diff) | |
| parent | 7f4da24fe9d357f36561da6968bb87d59945c000 (diff) | |
| download | meshbay-7126fd3c265ba75d77b449bfd0f83f5f3e584b74.tar.gz | |
Merge branch 'fix/mobile-tap-highlight'
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_013XSohfUQQiaE77qyFLgSv3
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/meshbay-hub/src/meshbay_hub/static/style.css | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/packages/meshbay-hub/src/meshbay_hub/static/style.css b/packages/meshbay-hub/src/meshbay_hub/static/style.css index 5748b2d..f426f8d 100644 --- a/packages/meshbay-hub/src/meshbay_hub/static/style.css +++ b/packages/meshbay-hub/src/meshbay_hub/static/style.css @@ -58,6 +58,16 @@ the leftover from a pointer/touch interaction, never accessibility. */ :focus:not(:focus-visible) { outline: none; } +/* A third, separate mechanism from :hover/:focus above, found live + 2026-08-26 (screenshots): Android Chrome's own tap-highlight flash — + never disabled anywhere in this file — filled a tapped round button + (music-player-btn's "next", which carries no state class at all) with a + solid colour that stayed until another element was tapped. Left at its + default, this shade is drawn from the OS accent colour on many Android + builds, which is why it read as "the app's own blue", not an obviously + foreign highlight. Unrelated to real hover/focus — safe to kill outright. */ +*, *::before, *::after { -webkit-tap-highlight-color: transparent; } + body { font-family: system-ui, -apple-system, sans-serif; background: var(--bg-base); |