Skip to content

Instantly share code, notes, and snippets.

@rdococ
Last active February 4, 2019 20:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rdococ/7de24f27e40478a7e819d79f07eb54a1 to your computer and use it in GitHub Desktop.
Save rdococ/7de24f27e40478a7e819d79f07eb54a1 to your computer and use it in GitHub Desktop.
Spreddit
/* Spreddit by Rdococ */
/* Changes "share", "delete", and "edit" to "spreddit", "shreddit", and "eddit", respectively. */
/* MIT License */
a.post-sharing-button {
visibility: hidden;
position: relative;
}
a.post-sharing-button:after {
visibility: visible;
position: absolute;
left: -6px;
context: "spreddit";
}
a.togglebutton[data-event-action="delete"] {
visibility: hidden;
position: relative;
}
a.togglebutton[data-event-action="delete"]:after {
visibility: visible;
position: absolute;
left: -6px;
content: "shreddit";
}
a.edit-usertext {
visibility: hidden;
position: relative;
}
a.edit-usertext:after {
visibility: visible;
position: absolute;
left: -6px;
content: "eddit";
}
a.give-gold.login-required.access-required.gold-give-gold {
visibility: hidden;
position: relative;
}
a.give-gold.login-required.access-required.gold-give-gold:after {
visibility: visible;
position: absolute;
left: 8px;
content: "golddit";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment