Created
March 29, 2025 10:32
-
-
Save larsgw/5916f680cf7189234274008bcfe51d67 to your computer and use it in GitHub Desktop.
Mastodon Wide Columns
This file contains 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
// ==UserScript== | |
// @name Mastodon Wide Columns | |
// @namespace http://tampermonkey.net/ | |
// @version 2025-03-28 | |
// @description Wide columns and simpler scrollbars for Mastodon | |
// @author You | |
// @match https://mastodon.social/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=mastodon.social | |
// @grant GM_addStyle | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
GM_addStyle(` | |
.column { flex-grow: 1; } | |
.custom-scrollbars ::-webkit-scrollbar { | |
width: 1em !important; | |
} | |
.custom-scrollbars ::-webkit-scrollbar-thumb { | |
background-color: #d9d9e8 !important; | |
border: 0 !important; | |
border-radius: 0 !important; | |
box-shadow: none !important; | |
} | |
.custom-scrollbars ::-webkit-scrollbar-track { | |
background-color: #f9f9fb !important; | |
border-radius: 0 !important; | |
} | |
`) | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment