Skip to content

Instantly share code, notes, and snippets.

@codebykat
Forked from max/gist:6472731
Last active December 22, 2015 23:39
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codebykat/6548512 to your computer and use it in GitHub Desktop.
Save codebykat/6548512 to your computer and use it in GitHub Desktop.
Hides "conversation view" on Twitter while still preserving the ability to click to expand conversation. This works for me on Chrome.
.conversation-module > li:after, .conversation-module > li:before {
display: none;
}
ol.conversation-module li.conversation-root,
ol.conversation-module li.conversation-ancestor {
display: none;
}
li.js-has-navigable-stream.open ol.conversation-module li.conversation-root,
li.js-has-navigable-stream.open ol.conversation-module li.conversation-ancestor {
display: block;
}
Copy link

ghost commented Sep 13, 2013

Holy smokes! This is amazing! How exactly do you implement this in Chrome, for us laypeople?

@tgvashworth
Copy link

@theoreticalgirl Check out Stylish – lets you manage custom stylesheets in Chrome. https://chrome.google.com/webstore/detail/stylish/fjnbnpbmkenffdnngjfgmeleoegfcffe?hl=en

@robertdall
Copy link

OMG get this gal a medal or something… 

@pedroreys
Copy link

awesome! thanks!

@codebykat
Copy link
Author

@codebykat
Copy link
Author

@theoreticalgirl Sorry I didn't see your comment earlier! @PhUU is correct, if you install the Stylish extension you should just be able to do a one-click install of this from userstyles.org.

@mildmojo
Copy link

It doesn't seem to do anything in Stylish for Firefox. Thanks for spending time on this, though.

@codebykat
Copy link
Author

@mildmojo: The classes should be the same for Firefox. Are you sure it's getting applied to the site? Did you use this one or install it via userstyles.org?

@codebykat
Copy link
Author

@mildmojo: I just installed Firefox and Stylish and it works fine for me when installed from userstyles.org. Maybe you've got another add-on conflicting with it or something?

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