Created
November 17, 2021 20:39
-
-
Save malcolmocean/3d0ed4c9806b6ad8b53646da29cf95d4 to your computer and use it in GitHub Desktop.
Twitter Focus Permalink and Postonly page userstyle
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
/* go to https://twitter.com/post/status/only and you'll get a page for just tweeting */ | |
@-moz-document url("https://twitter.com/compose/tweet"), regexp("https://twitter.com.*/status/.*") { | |
header[role="banner"] {display:none} | |
div[aria-label="Back"] {display: none;} | |
div[data-testid="DMDrawer"] {display: none;} | |
main {margin-left: 30px;} | |
} | |
@-moz-document url("https://twitter.com/post/status/only") { | |
[data-testid="error-detail"] .css-901oao.css-16my406.r-poiln3.r-bcqeeo.r-qvutc0, | |
a[href="/search"][role="link"] { | |
display: none; | |
} | |
body:before { | |
display: block; | |
position: absolute; | |
left: 0; | |
right: 0; | |
top: 30%; | |
content: 'press n to tweet'; | |
text-align: center; | |
font-family: 'Ubuntu', 'Helvetica', 'sans-serif'; | |
font-size: 7vw; | |
color: #9ab; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment