Skip to content

Instantly share code, notes, and snippets.

@tenorune
Last active December 23, 2022 14:52
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 tenorune/279366c8c833690f8d1d9ac88bd855a1 to your computer and use it in GitHub Desktop.
Save tenorune/279366c8c833690f8d1d9ac88bd855a1 to your computer and use it in GitHub Desktop.
Text-centric Mastodon
/* Works with Mastodon 4.0.2 */
/* hide avatars in feed views */
div.status__avatar {visibility: hidden;width:0px;}
a.status__display-name {column-gap: 0px;}
/* hide link preview images in feed views, but show them in detail view */
.status-card__image {display: none;}
.detailed-status .status-card__image {display:block;}
/* hide emojis in usernames in feed views */
.display-name__html .emojione {display: none;}
.status__prepend .emojione {display: none;}
.detailed-status .display-name__html .emojione {display:inline;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment