Skip to content

Instantly share code, notes, and snippets.

@XtinaSchelin
Last active January 27, 2016 00:13
Show Gist options
  • Select an option

  • Save XtinaSchelin/1b25389a319afb5376cd to your computer and use it in GitHub Desktop.

Select an option

Save XtinaSchelin/1b25389a319afb5376cd to your computer and use it in GitHub Desktop.
Twitter Itself: Stars Not Hearts
/* Replace the heart with a star. */
button.ProfileTweet-actionButtonUndo.js-actionFavorite div.IconContainer div div,
button.ProfileTweet-actionButton.js-actionFavorite div.IconContainer div div {
background-image: none !important;
}
/* Full star. */
button.ProfileTweet-actionButtonUndo.js-actionFavorite div.IconContainer div div:after,
button.ProfileTweet-actionButton.js-actionFavorite div.IconContainer div div:after {
font-family: rosettaicons;
content: "\f147";
}
/* Boxed star. */
div.stream-item-activity-line-notification b span.Icon--heartBadge:before, p.social-proof
span.Icon--heartBadge:before, div.WebToast-imageBox span.Icon--heartBadge:before {
font-family: rosettaicons;
content: "\f001";
}
button.ProfileTweet-actionButtonUndo.js-actionFavorite div.IconContainer div div,
button.ProfileTweet-actionButton.js-actionFavorite div.IconContainer div div{
padding-top: 16px;
}
/* Change the color from red to yellow. */
button.ProfileTweet-actionButtonUndo.js-actionFavorite div.IconTextContainer,
button.ProfileTweet-actionButtonUndo.js-actionFavorite div.IconContainer,
button.ProfileTweet-actionButton.js-actionFavorite:hover,
div.ProfileTweet-action--favorite div.IconTextContainer span span:hover,
button.ProfileTweet-actionButtonUndo.js-actionFavorite div.IconContainer div,
button.ProfileTweet-actionButtonUndo.js-actionFavorite div.IconContainer div div,
div.stream-item-activity-line-notification b span.Icon--heartBadge:before, p.social-proof
span.Icon--heartBadge:before, div.WebToast-imageBox span.Icon--heartBadge:before {
color: #FAC10E;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment