Skip to content

Instantly share code, notes, and snippets.

@tisunov
Last active September 26, 2015 12:49
Show Gist options
  • Save tisunov/a177d57a9274a9e152e9 to your computer and use it in GitHub Desktop.
Save tisunov/a177d57a9274a9e152e9 to your computer and use it in GitHub Desktop.
CLEAN UP TWITTER
/* CLEAN UP TWITTER
by @levelsio
use Stylebot Chrome extension to load this by default:;
https://chrome.google.com/webstore/detail/stylebot/oiaejidbmkiecgbjeifoejpgmdaleoha?hl=en
*/
/* Removes all borders in layout */
* {
border:none !important;
}
/* Makes all human avatars round */
.DashboardProfileCard-avatarLink,
.js-action-profile-avatar {
border-radius:100% !important;
}
/* Hide useless modules like footer and who to follow */
.js-view-details,
.module.trends,
.module.Footer,
.wtf-module {
display:none !important;
}
/* Hide notifications of favorited, followed and list members added */
.stream-item-favorite,
.stream-item-follow,
.stream-item-list_member_added,
.stream-item-favorited_mention {
display:none !important;
}
/* Highlight expanded reply chain */
.expanding-stream-item.open .tweet {
background-color: #D1EAF8;
}
/* Highlight original expanded tweet, so you can locate and close it when done reading replies */
.expanding-stream-item.open .original-tweet-container .original-tweet {
background-color: #ABDBF9;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment