Mercurial > ec-userscripts
diff tweetdeck-column-fix.user.js @ 115:7774174022af
Backed out changeset b9b84779a672
author | nanaya <me@nanaya.net> |
---|---|
date | Sun, 15 Jan 2023 23:43:44 +0900 |
parents | |
children | 8de2d53a4cb1 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tweetdeck-column-fix.user.js Sun Jan 15 23:43:44 2023 +0900 @@ -0,0 +1,27 @@ +// ==UserScript== +// @name Tweetdeck column fix +// @namespace https://nanaya.net +// @version 1.1.0 +// @description No weird column alignment and color for scrollbar +// @author nanaya +// @match https://tweetdeck.twitter.com/* +// @grant GM_addStyle +// @downloadURL https://hg.nanaya.net/ec-userscripts/raw-file/tip/tweetdeck-column-fix.user.js +// ==/UserScript== + +'use strict'; + +/* global GM_addStyle */ +GM_addStyle(` + .app-columns { + display: flex; + } + .column { + top: 0; + flex: none; + } + .app-columns-container.app-columns-container.app-columns-container.app-columns-container { + bottom: 0; + background-color: #555; + } +`);