Post AT1oUo7Ylul7WhloiO by gabriel@mk.gabe.rocks
(DIR) More posts by gabriel@mk.gabe.rocks
(DIR) Post #AT1oHLkKxMdPlAUUjI by jbauer@merveilles.town
2023-02-25T05:31:02Z
2 likes, 0 repeats
After eavesdropping on another thread 👀, I've added symbols next to links on my site which lead to external sites.
(DIR) Post #AT1oUo7Ylul7WhloiO by gabriel@mk.gabe.rocks
2023-02-25T05:34:12.111Z
0 likes, 0 repeats
@jbauer@merveilles.town In pure CSS! Now that's fancy.`article a[href^="http"]:where(:not([href*="host"]))::after {content: ↗️;}`
(DIR) Post #AT1oaKib0Faw4bjDvM by gabriel@mk.gabe.rocks
2023-02-25T05:35:13.174Z
1 likes, 0 repeats
@jbauer@merveilles.town In pure CSS! Now that's fancy.article a[href^="http"]:where(:not([href*="host"]))::after {content: ↗️;}
(DIR) Post #AT1ouverN6NSQonltQ by jbauer@merveilles.town
2023-02-25T05:38:30Z
1 likes, 1 repeats
@gabriel Plus a selector to make sure it doesn't get applied to clickable images!figure a::after { content:"" !important}(All credit for the CSS in your post goes to @eli_oat ^^)