And a bit improved version to change also the Publish button text in the mobile layout...
div.compose-form__publish-button-wrapper > button,
div.ui__header__links > a[href="/publish"] {
text-indent: -9999px;
line-height: 0;
}
div.compose-form__publish-button-wrapper > button::after,
div.ui__header__links > a[href="/publish"]::after {
content: "T00t.it!";
text-indent: 0;
display: block;
line-height: initial;
}
Here - working Custom CSS to change the Mastodon web UI "Publish!" button text to a custom value... I brought back the T00t! on my own instance...
(This can be done only by your instance admin.)
div.compose-form__publish-button-wrapper > button {
text-indent: -9999px;
line-height: 0;
}
div.compose-form__publish-button-wrapper > button::after {
content: "T00t!";
text-indent: 0;
display: block;
line-height: initial;
}
@catswhocode @nanda
I already opened an issue / feature request on the glitch-soc repo, to bring it back there:
https://github.com/glitch-soc/mastodon/issues/1817