Skip to content

Instantly share code, notes, and snippets.

@pbausch
Last active June 16, 2017 15:24
Show Gist options
  • Save pbausch/75ca0ab77d950049fa132b0a002bac7a to your computer and use it in GitHub Desktop.
Save pbausch/75ca0ab77d950049fa132b0a002bac7a to your computer and use it in GitHub Desktop.
Twitter Hearts to Stars
#thanks, http://gizmodo.com/how-to-replace-twitters-dumb-heart-with-the-emoji-of-yo-1740302661
.HeartAnimationContainer, .HeartAnimation {
visibility: hidden;
}
.HeartAnimationContainer:after, .Icon--heart:before {
content: '☆' !important;
visibility: visible;
display: inline-block;
position: relative;
vertical-align: middle;
color: #657786;
font-size: 25px;
margin-bottom: 6px;
}
.ProfileTweet-actionButtonUndo .IconContainer .Icon--heart:before {
content: '★' !important;
color: gold;
}
.ProfileTweet-actionCountForPresentation {
color: #657786;
}
.ProfileNav-item--favorites .ProfileNav-label {
visibility: hidden;
}
.ProfileNav-item--favorites .ProfileNav-label:after {
content:'Favorites';
visibility: visible;
margin-left:-30px;
}
/* Also, no moments! Remove this if you like moments!!!1! */
.moments {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment