From 384165a9583e119f53ee464434c478a7ee8e443d Mon Sep 17 00:00:00 2001 From: spinline Date: Sun, 8 Feb 2026 21:28:10 +0300 Subject: [PATCH] fix: ios safari mobile dropdown and click bubbling issues resolved with cursor-pointer and css fixes --- frontend/index.html | 13 ++++++++++++ frontend/src/components/layout/statusbar.rs | 2 +- frontend/src/components/torrent/table.rs | 22 ++++++++++----------- 3 files changed, 24 insertions(+), 13 deletions(-) diff --git a/frontend/index.html b/frontend/index.html index 3eb3159..399b8fa 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -142,6 +142,19 @@ body.app-loaded #app-loading { display: none !important; } + + /* iOS Safari Click Fixes */ + body { + cursor: pointer; + -webkit-tap-highlight-color: transparent; + } + + summary { + list-style: none; + } + summary::-webkit-details-marker { + display: none; + }