I'm trying to skin Wikipedia with just CSS. I've gotten stuck trying to show the "Watch" and "Unwatch" text on Wikipedia pages.
If you inspect element the star icon on the top right of this page:
https://en.wikipedia.org/wiki/Main_Page
you'll see that the a tag has text content (Either "Watch" or "Unwatch").
I'd like to see that text.
I've tried:
#ca-watch.icon a::before {
display: inline-block !important;
}
.vector-menu-tabs .mw-watchlink.icon a {
width: 10em;
}
However, the text content still renders under the star icon. Does anyone have an idea of what I'm doing wrong?
Thank you!