Last active
December 23, 2022 14:52
-
-
Save tenorune/279366c8c833690f8d1d9ac88bd855a1 to your computer and use it in GitHub Desktop.
Text-centric Mastodon
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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