Skip to content

Instantly share code, notes, and snippets.

@fredericmarx
Last active October 6, 2015 11:04
Show Gist options
  • Save fredericmarx/9415488e4bc8c4991f18 to your computer and use it in GitHub Desktop.
Save fredericmarx/9415488e4bc8c4991f18 to your computer and use it in GitHub Desktop.
fredericmarx-tweetdeck.user.js
// ==UserScript==
// @name @fredericmarx Tweetdeck Custom
// @namespace http://fmarx.com
// @version 0.1
// @description Small Tweetdeck usability tweaks
// @author @fredericmarx
// @match https://tweetdeck.twitter.com/
// ==/UserScript==
( function() {
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '.column {width: 40%; min-width: 23rem; max-width: 38rem;} .account-link {max-width: 50%; overflow: visible;} .js-show-detail:hover {background-color: rgba(0,0,0,.08);}';
document.head.appendChild(style);
} )();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment