Last active
June 16, 2017 15:24
-
-
Save pbausch/75ca0ab77d950049fa132b0a002bac7a to your computer and use it in GitHub Desktop.
Twitter Hearts to Stars
This file contains hidden or 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
#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