Change send post button text to whatever. Only works on desktop screens 1174px wide and over!
Mastodon post button changer by big-b33-pr0xy-200x-goodwill
Details
Authorbig-b33-pr0xy-200x-goodwill
LicenseCC-BY-4.0
Categorymastodon
Created
Updated
Size997 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Change send post button text to whatever. Only works on desktop screens 1174px wide and over! Add your domain if it's not there.
Use the dropdown menu to switch between text size and emoji only size.
Source code
/* ==UserStyle==
@name Mastodon post button changer?
@namespace mastodon.social
@version 1.0.0
@description Change send post button text to whatever. Only works on desktop screens 1174px wide and over! Add your domain if it's not there.
@author Proxybat
@license CC-BY-4.0
@advanced text customtxt "Custom text:" "Type custom text here!"
@advanced dropdown emoji "Emoji size (enable if you're only using emojis)" {
emoji1 "Text" <<<EOT inherit EOT;
emoji2 "Emoji" <<<EOT 25px EOT;
}
==/UserStyle== */
@-moz-document domain("mastodon.social"),
domain("social.yesterweb.org"),
domain("mastodon.art") {
:root {
--custom-txt: "/*[[customtxt]]*/";
--emoji-mode: /*[[emoji]]*/;
}
/*the custom text*/
.compose-form__publish-button-wrapper > .button::after {
content: var(--custom-txt);
}
/*for emojis*/
.compose-form__publish-button-wrapper > .button::after {
font-size: var(--emoji-mode);
}
/*🐒🐸🐢*/
}