Last active
November 11, 2015 07:24
Revisions
-
mathowie revised this gist
Nov 4, 2015 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -69,5 +69,6 @@ as a new Style. Make sure it applies to the domain 'twitter.com' */ .ProfileNav-item--favorites .ProfileNav-label:after { content:'Favorites'; visibility: visible; margin-left:-30px } -
mathowie revised this gist
Nov 4, 2015 . 1 changed file with 12 additions and 0 deletions.There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -58,4 +58,16 @@ as a new Style. Make sure it applies to the domain 'twitter.com' */ visibility: visible; display: block; position: absolute; } /* Remove 'Likes' on Profile Page */ .ProfileNav-item--favorites .ProfileNav-label { visibility: hidden; } /* replace it with 'Favorites' */ .ProfileNav-item--favorites .ProfileNav-label:after { content:'Favorites'; visibility: visible; display: block; } -
mathowie renamed this gist
Nov 4, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
mathowie created this gist
Nov 4, 2015 .There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,61 @@ /* Install the Stylish extension for your browser, then add this code as a new Style. Make sure it applies to the domain 'twitter.com' */ /* Tweet any improvements or comments to @mcnees. */ /* Hide the heart for un-Faved tweets. */ .ProfileTweet-actionButton .HeartAnimationContainer { visibility: hidden; } /* Replace the heart for un-Faved tweets with an emoji. */ .ProfileTweet-actionButton .HeartAnimationContainer:after { content:'⚪️'; visibility: visible; display: block; position: absolute; } /* Hide the heart for Faved tweets. */ .ProfileTweet-actionButtonUndo .HeartAnimationContainer { visibility: hidden; } /* Replace the heart for Faved tweets with an emoji. */ .ProfileTweet-actionButtonUndo .HeartAnimationContainer:after { content:'💯'; visibility: visible; display: block; position: absolute; } /* Change the text color for the Fav count. */ .ProfileTweet-actionCountForPresentation { color: #999; } /* Hide the heart icon for Favs in the notification stream. */ .activity-type-favorite { visibility: hidden; } /* Replace them with an emoji. */ .activity-type-favorite:after { content:'⭐️'; visibility: visible; display: block; position: absolute; } /* Hide the icons for a favorited mention in notification stream. */ .activity-type-favorited_mention { visibility: hidden; } /* Replace it with an emoji. */ .activity-type-favorited_mention:after { content:'🔥'; visibility: visible; display: block; position: absolute; }