Mercurial > ec-userscripts
comparison 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 |
comparison
equal
deleted
inserted
replaced
| 114:817b62848b27 | 115:7774174022af |
|---|---|
| 1 // ==UserScript== | |
| 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 | |
| 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 `); |
