From ff334e08884e90150718f7107361bd53e3d79b57 Mon Sep 17 00:00:00 2001 From: Viacheslav Slinko Date: Wed, 15 May 2024 10:06:30 +0300 Subject: [PATCH] Hide tooltip on mobile (#733) --- bookmarks/styles/bookmark-page.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bookmarks/styles/bookmark-page.scss b/bookmarks/styles/bookmark-page.scss index 32797d2..a4d63fe 100644 --- a/bookmarks/styles/bookmark-page.scss +++ b/bookmarks/styles/bookmark-page.scss @@ -199,6 +199,12 @@ li[ld-bookmark-item] { animation: 0.3s ease 0s appear; } + @media (pointer:coarse) { + .title a[data-tooltip]::after { + display: none; + } + } + &.unread .title a { font-style: italic; }