Gavin Smith writes: > On Mon, Apr 03, 2023 at 01:01:47AM +0700, Yuri Khan wrote: >> On Sun, 2 Apr 2023 at 20:11, Gavin Smith wrote: >> >> > There are ś (pilcrow) symbols visible indicating copiable links. >> > >> > texi2any outputs CSS rules to hide these unless the users moves their >> > mouse pointer over the text: >> > >> > a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em} >> > span:hover a.copiable-link {visibility: visible} >> >> How do these rules behave on mobile browsers where there is no mouse? > > I've just tested it with Brave 1.49.132 on Android 8.1.0 and it appears > that the links appear when you tap on the text they are next to. > They disappear when you tap elsewhere on the page. This is browser specific. You can use the following as a workaround: @media (hover: none) { /* Presume the user will have difficulty hovering. Make clickable anchors visible. */ a.copiable-link { visibility: visible; } } -- Arsen Arsenović