Skip to content

Instantly share code, notes, and snippets.

@roobre
Last active October 24, 2019 08:54
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 roobre/314a95ea5e5d41ca87915510fdd97e04 to your computer and use it in GitHub Desktop.
Save roobre/314a95ea5e5d41ca87915510fdd97e04 to your computer and use it in GitHub Desktop.
Stylish snippet to make tweetdeck dark theme prettier and more consistent
@-moz-document domain("tweetdeck.twitter.com") {
.compose-text-container,
.js-quote-tweet-holder,
.compose-reply-tweet > .tweet-body > .js-tweet-text,
.js-compose-text,
.js-in-reply-to,
.js-in-reply-to {
color: #ddd;
background-color: rgb(64, 69, 82) !important;
}
html.dark .bg-color-twitter-white {
background-color: rgb(64, 69, 82) !important;
}
.js-in-reply-to {
border-bottom: 1px dotted #ddd !important;
}
.fullname.link-complex-target {
color: rgb(225, 232, 237) !important;
}
div.replyto-caret {
display: none !important;
}
p.txt-ellipsis {
display: none;
}
/* Fix margin between RT icon and text not being clickable */
a > span.pull-right {
float: none !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment