#Old Bot Tags (NO MORE APPS!!!)
1 messages · Page 1 of 1 (latest)
another version (made by my friend)
span[class^=botTag] > span[class^=botText] {
display: none;
}
span[class^=botTag]::after {
content: "BOT";
}
found in bd server works fine and doesnt break clydes
font-size: 0 !important;
line-height: 0 !important;
}
.botTag__4211a:not(.botTagAI__8aa63, .botTagOP_fd6360, .botTagRemix_b2d431, .decorator__2a8bf) .botText_daff56:before {
content: "Bot";
font-size: 0.625rem;
line-height: 1.3;
}```
I didnt make this credit to dav
[class*=botTagRegular]>span:before {
content: "Bot";
font-size: 0.625rem;
line-height: 1.3;
}
[class*=botTagRegular]>span {
font-size: 0!important;
line-height: 0!important;
}``` simplified version
Kewl
span[class^=botTag]:not(span[class*=botTagAI]) > span[class^=botText] {
display: none !important;
}
span[class^=botTag]:not(span[class*=botTagAI])::after {
content: "BOT";
}
featuring ugly css wildcard to fix clyde tag
mine already does this though
it only affects the normal bot tag or should i say apps tag
lmfao
ah
any other tag mine breaks?
this was a reply to the user who posted the snippet to begin with
im not sure if yours also has the same issue
it does
atleast it shows op as bot
not sure wich though as i dont know wich exist except op bot and ai
i dont think anymore exist
[class*=botTagRegular]:not([class*=botTagOP])>span:before {
content: "Bot";
font-size: 0.625rem;
line-height: 1.3;
}
[class*=botTagRegular]:not([class*=botTagOP])>span {
font-size: 0!important;
line-height: 0!important;
}```
then this should work
oooooops
span[class^=botTag]:not(span[class*=botTagAI], span[class*=botTagOP]) > span[class^=botText],
span[class^=headerBotTag]:not(span[class*=botTagAI]) > span[class^=botText] {
display: none !important;
}
span[class^=botTag]:not(span[class*=botTagAI], span[class*=botTagOP])::after,
span[class^=headerBotTag]:not(span[class*=botTagAI])::after {
content: "BOT";
}
fixed op tag and profile of bots
span[class^=botTag]:not(span[class*=botTagAI], span[class*=botTagOP], span[class*=botTagRemix]) > span[class^=botText],
span[class^=headerBotTag]:not(span[class*=botTagAI]) > span[class^=botText] {
display: none !important;
}
span[class^=botTag]:not(span[class*=botTagAI], span[class*=botTagOP], span[class*=botTagRemix])::after,
span[class^=headerBotTag]:not(span[class*=botTagAI])::after {
content: "BOT";
}
fixed remix tag
huh
forgot remix tag exists because its barely used
[class*=botTagRegular]:not([class*=botTagOP],[class*=botTagRemix])>span:before {
content: "Bot";
font-size: 0.625rem;
line-height: 1.3;
}
[class*=botTagRegular]:not([class*=botTagOP],[class*=botTagRemix])>span {
font-size: 0!important;
line-height: 0!important;
}```
with remix fixed ig
also works with ai tag just as good
without specifying it
Just me or does that break MoreUserTags??
I think this is better and also works for MoreUserTags
.botTagRegular_fc4b4a[data-tag="app"] .botText_daff56 {
visibility: hidden;
}
.botTagRegular_fc4b4a[data-tag="app"] .botText_daff56::before {
content: 'BOT';
visibility: visible;
position: absolute;
}
Doesnt seem to work for me :/
Okay, so I seemed to fix it with this:
.botTagRegular_fc4b4a[data-tag="app • admin"] .botText_daff56 {
visibility: hidden;
}
.botTagRegular_fc4b4a[data-tag="app • admin"] .botText_daff56::before {
content: 'BOT';
visibility: visible;
position: absolute;
}
though the BOT tag bar is really wide then (I tried to adjust the width but it didnt change anything)
Aight, I fixed it fully :D
This fixes App for MoreUserTags and also fixes the User Installable apps (as they dont have the admin tag bundled c:):
/* No more app */
.botTagRegular_fc4b4a[data-tag="app • admin"] .botText_daff56 {
visibility: hidden;
}
.botTagRegular_fc4b4a[data-tag="app • admin"] .botText_daff56::before {
content: 'BOT';
visibility: visible;
position: absolute;
}
.botTagRegular_fc4b4a[data-tag="app • admin"]{
width: 21px;
}
.botTagRegular_fc4b4a[data-tag="app"] .botText_daff56 {
visibility: hidden;
}
.botTagRegular_fc4b4a[data-tag="app"] .botText_daff56::before {
content: 'BOT';
visibility: visible;
position: absolute;
}
Oh well, breaks verified bots completely and the bot tag in userpopout is fricked too ;-;
just do s/app/bot/gi, what could possibly go wrong /s
job botlication
botarently
.botTagRegular_fc4b4a {
&[data-tag^="app"] .botText_daff56 {
visibility: hidden;
&::before {
visibility: visible;
position: absolute;
white-space: nowrap
}
}
&[data-tag="app"] .botText_daff56 {
&::before {
content: 'BOT'
}
}
&[data-tag="app • mod"] .botText_daff56 {
&::before {
content: 'BOT • Mod'
}
}
&[data-tag="app • admin"] .botText_daff56 {
&::before {
content: 'BOT • Admin'
}
}
}
.notAppAsidePanel__95814:has([aria-label="Verified App"]:hover) .layer__6b5c3.disabledPointerEvents__214b3 .tooltip__7b090.tooltipTop_e50d2d.tooltipPrimary__51b23.tooltipDisablePointerEvents__2978d .tooltipContent_adb6d5 {
visibility: hidden;
&::before {
content:'Verified Bot';
position:absolute;
visibility: visible;
width:100%;
left:0;
text-align:center
}
}
.applicationInstallButtonText__90897 {
visibility: hidden;
&::before {
content:'Add Bot';
position:absolute;
visibility:visible
}
}```
i hate discord
how is this related
dosent work my bots say APPS • Staff and i just want "Bots"
nvm the fix was #🏥-vencord-support-🏥 message