Skip to content

Instantly share code, notes, and snippets.

@ZackBoe
Last active December 26, 2015 22:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ZackBoe/7227014 to your computer and use it in GitHub Desktop.
Save ZackBoe/7227014 to your computer and use it in GitHub Desktop.
Widescreen Twitter Feed | Works well with https://github.com/mdo/twitter-userstyle
/* I use the Firefox addon Stylish to apply this to _only_ the homepage */
/* I never use the sidebar on the homepage. Bigger tweets are better tweets. Most of the time.
This hides your profile card, trends, who to follow, and anything other than the actual feed */
.dashboard {
display:none;
}
#timeline {
width:100% !important;
}
/* Hides media: cards, embedded tweets, images, etc until expanded.
Also hides the action buttons (reply, retweet, favorite, etc) until expanded */
.tweet-actions, .js-actions, .cards-media-container, .js-media-container, .OldMedia {
display: none !important;
}
/* Show the stuff that should be shown when a tweet is expanded */
.open .tweet-actions, .open .js-actions, .open .cards-media-container, .open .js-media-container, .open .OldMedia {
display: inline !important;
}
/* Highlight tweets that have hidden media. Currently doesn't work with embedded tweets */
[data-has-native-media='true'], [data-has-cards='true'] {
border-left: 1px solid gray;
}
@ZackBoe
Copy link
Author

ZackBoe commented Oct 30, 2013

Firefox & Chrome Stylish addons

@ZackBoe
Copy link
Author

ZackBoe commented Sep 9, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment