[DISCONTINUED]
Minimal & Clean Twitter Homepage (Elon Musk Disinfector)
Tidy Twitter 𝕏 [DISCONTINUED] by mostlyharmless
Details
Authormostlyharmless
LicenseMIT
Categorytwitter
Created
Updated
Size3.2 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
[DISCONTINUED] This style will no longer be updated.
⸺ ⸺ ⸺ ⸺ ⸺ ⸺
07/23/23: Hide elon musk's ugly-ass X logo and bring back the Twitter bird.
- bring back the blue bird 𝕏 → 🐦
- Hide Verified button
- hide the username
- remove "read the article" warning before retweet
- hide the twitter blue signup button
- hide the verified button
- hide the verified organizations button
- rounded brands square avatars
twitter.com
Source code
/* ==UserStyle==
@name Tidy Twitter
@namespace https://userstyles.world/user/mostlyharmless
@version 2.6
@description A complementory style for Minimal Theme for Twitter extension https://github.com/typefully/minimal-twitter
@author MostlyHarmless
@preprocessor stylus
@license MIT
@homepageURL https://userstyles.world/style/8620/tidy-twitter
@advanced checkbox HideVerified "🚫 Hide Verified" 1
@advanced checkbox HideVeriOrg "🚫 Hide Verified orgs" 1
@advanced checkbox HideBlueIcon "🚫 Hide Twitter Blue" 1
@advanced checkbox HideUserID "🚫 Hide Account Switcher" 1
@advanced checkbox HideReadArticle "🚫 Hide Retweet Warnings" 1
@advanced checkbox RndSqrdAvatars "🎛️ Round orgz Avatars" 1
==/UserStyle== */
@-moz-document domain("twitter.com") {
/* Hide verified */
if (HideVerified) {
[aria-label="Verified"] {display: none!important;}
}
/* Hide verified organizations */
if (HideVeriOrg) {
[aria-label="Verified Organizations"] {display: none!important;}
}
/* hide twitter blue */
if (HideBlueIcon) {
a[href*='twitter_blue_sign_up'] {display: none!important;}
}
/* hide user profile name & ID */
if (HideUserID) {
div.r-usiww2 {display:none!important;}
}
/* remove "read the article" from the retweet */
if (HideReadArticle) {
DIV.css-1dbjc4n[data-testid="Dropdown"] > A:nth-child(1) {display: none!important;}
}
/* round squared organizations avatars */
if (RndSqrdAvatars) {
[data-testid^="UserAvatar-Container-"]:nth-child(1):nth-child(1) {
overflow: hidden;
border-radius: 9999px;
clip-path: unset;
}
}
[data-testid^="UserAvatar-Container-"]:nth-child(1):nth-child(1) a div {
overflow: hidden;
border-radius: 9999px;
clip-path: unset;
}
/* Hide the X logo and replace it with the twitter bird logo (you can change the color)*/
h1[role="heading"] > a[href="/home"][role="link"] path, [aria-label="Loading…"] path {
d: path("M 23.643 4.937 c -0.835 0.37 -1.732 0.62 -2.675 0.733 c 0.962 -0.576 1.7 -1.49 2.048 -2.578 c -0.9 0.534 -1.897 0.922 -2.958 1.13 c -0.85 -0.904 -2.06 -1.47 -3.4 -1.47 c -2.572 0 -4.658 2.086 -4.658 4.66 c 0 0.364 0.042 0.718 0.12 1.06 c -3.873 -0.195 -7.304 -2.05 -9.602 -4.868 c -0.4 0.69 -0.63 1.49 -0.63 2.342 c 0 1.616 0.823 3.043 2.072 3.878 c -0.764 -0.025 -1.482 -0.234 -2.11 -0.583 v 0.06 c 0 2.257 1.605 4.14 3.737 4.568 c -0.392 0.106 -0.803 0.162 -1.227 0.162 c -0.3 0 -0.593 -0.028 -0.877 -0.082 c 0.593 1.85 2.313 3.198 4.352 3.234 c -1.595 1.25 -3.604 1.995 -5.786 1.995 c -0.376 0 -0.747 -0.022 -1.112 -0.065 c 2.062 1.323 4.51 2.093 7.14 2.093 c 8.57 0 13.255 -7.098 13.255 -13.254 c 0 -0.2 -0.005 -0.402 -0.014 -0.602 c 0.91 -0.658 1.7 -1.477 2.323 -2.41 Z");
/*If you don't want the blue bird, remove the code below or change the color code to whatever color you want*/
color: rgb(29, 155, 240);
fill: rgb(29, 155, 240);
}
}