Skip to content

Instantly share code, notes, and snippets.

@mathowie
Last active November 11, 2015 07:24

Revisions

  1. mathowie revised this gist Nov 4, 2015. 1 changed file with 3 additions and 2 deletions.
    5 changes: 3 additions & 2 deletions twitter-stylish.css
    Original 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;
    display: block;
    }
    margin-left:-30px
    }

  2. mathowie revised this gist Nov 4, 2015. 1 changed file with 12 additions and 0 deletions.
    12 changes: 12 additions & 0 deletions twitter-stylish.css
    Original 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;
    }
  3. mathowie renamed this gist Nov 4, 2015. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  4. mathowie created this gist Nov 4, 2015.
    61 changes: 61 additions & 0 deletions twitter-stylish.txt
    Original 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;
    }