Skip to content

Instantly share code, notes, and snippets.

@codebykat
Forked from max/gist:6472731
Last active December 22, 2015 23:39
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