Last active
July 31, 2024 16:57
-
-
Save gdnwebmedia/8c45fc8f239ade8c85236b188f773301 to your computer and use it in GitHub Desktop.
add an icon for external links
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// Links | |
/* | |
All elements with the .brxe-post-sharing and .no-target-icon will not show the icon | |
*/ | |
body a[target="_blank"]:not(.brxe-post-sharing):not(.no-target-icon):not(figure.no-target-icon a)::after { | |
content: '\2197'; /* Unicode for ↗ */ | |
font-size: .65em; | |
vertical-align: middle; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment