Skip to content

Instantly share code, notes, and snippets.

@stripedpurple
Created May 12, 2017 20:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stripedpurple/90a28a9c7ec6c8d534f689d0a68807c6 to your computer and use it in GitHub Desktop.
Save stripedpurple/90a28a9c7ec6c8d534f689d0a68807c6 to your computer and use it in GitHub Desktop.
Reveals the text associated with labels on trello cards
// ==UserScript==
// @name Trello Label Revealer
// @namespace http://stripedpurple.io
// @version 0.1
// @description makes trello labels visible
// @author Austin Barrett
// @match *trello.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.body.innerHTML += "<style>.list-card {overflow: hidden;} .list-card-labels {display: block; margin: 0!important;} .list-card-labels .card-label {font-size: .7142857142857143rem; line-height: 1.142857142857143rem!important; height: inherit!important; margin-right: 0; padding: 0 0.5em!important; text-align: center; text-shadow: rgba(0, 0, 0, .1) 0 0 5px, rgba(0, 0, 0, .2) 0 0 2px; width: auto!important; display: inline!important;}</style>";
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment