view 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 source

// ==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;
  }
`);