Skip to content

Instantly share code, notes, and snippets.

@MasterGroosha
Created May 14, 2019 10:46
Show Gist options
  • Save MasterGroosha/4c4f0bda7f43dc545227fa9a1a95a9db to your computer and use it in GitHub Desktop.
Save MasterGroosha/4c4f0bda7f43dc545227fa9a1a95a9db to your computer and use it in GitHub Desktop.
Returns missing filters scrollbar to pixelfed.social on Google Chrome
// ==UserScript==
// @name Return filters scrollbar to pixelfed.social
// @namespace https://pixelfed.social/
// @version 1.0
// @description Return filters scrollbar to pixelfed.social
// @author MasterGroosha
// @match https://pixelfed.social/
// @grant GM_addStyle
// ==/UserScript==
// See https://github.com/pixelfed/pixelfed/issues/1285 for details
(function() {
'use strict';
GM_addStyle(".media-drawer-filters::-webkit-scrollbar {display: inline-block !important}");
GM_addStyle(".media-drawer-filters::-webkit-scrollbar-thumb {background-color: #bfbfbf;}");
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment