comparison tweetdeck-column-fix.user.js @ 86:2d9624e04134

Fix bottom padding and scrollbar color
author nanaya <me@nanaya.pro>
date Mon, 13 Sep 2021 18:14:08 +0900
parents 86da34e62d29
children 2c4470b73ad9
comparison
equal deleted inserted replaced
85:9c8cde985caf 86:2d9624e04134
1 // ==UserScript== 1 // ==UserScript==
2 // @name Tweetdeck column fix 2 // @name Tweetdeck column fix
3 // @namespace https://myconan.net 3 // @namespace https://myconan.net
4 // @version 1.0.2 4 // @version 1.1.0
5 // @description No weird column alignment 5 // @description No weird column alignment and color for scrollbar
6 // @author nanaya 6 // @author nanaya
7 // @match https://tweetdeck.twitter.com/* 7 // @match https://tweetdeck.twitter.com/*
8 // @grant GM_addStyle 8 // @grant GM_addStyle
9 // @downloadURL https://hg.myconan.net/ec-userscripts/raw-file/tip/tweetdeck-column-fix.user.js 9 // @downloadURL https://hg.myconan.net/ec-userscripts/raw-file/tip/tweetdeck-column-fix.user.js
10 // ==/UserScript== 10 // ==/UserScript==
16 } 16 }
17 .column { 17 .column {
18 top: 0; 18 top: 0;
19 flex: none; 19 flex: none;
20 } 20 }
21 .app-columns-container.app-columns-container.app-columns-container.app-columns-container {
22 bottom: 0;
23 background-color: #555;
24 }
21 `) 25 `)