115
|
1 // ==UserScript==
|
118
|
2 // @name Tweetdeck column fix
|
|
3 // @namespace https://nanaya.net
|
|
4 // @version 1.1.0
|
|
5 // @description No weird column alignment and color for scrollbar
|
|
6 // @author nanaya
|
|
7 // @match https://tweetdeck.twitter.com/*
|
|
8 // @grant GM_addStyle
|
|
9 // @downloadURL https://hg.nanaya.net/ec-userscripts/raw-file/tip/tweetdeck-column-fix.user.js
|
115
|
10 // ==/UserScript==
|
|
11
|
|
12 'use strict';
|
|
13
|
|
14 /* global GM_addStyle */
|
|
15 GM_addStyle(`
|
|
16 .app-columns {
|
|
17 display: flex;
|
|
18 }
|
|
19 .column {
|
|
20 top: 0;
|
|
21 flex: none;
|
|
22 }
|
|
23 .app-columns-container.app-columns-container.app-columns-container.app-columns-container {
|
|
24 bottom: 0;
|
|
25 background-color: #555;
|
|
26 }
|
|
27 `);
|