Skip to content

Instantly share code, notes, and snippets.

@mutewinter
Last active December 9, 2015 19:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mutewinter/da2f18d694be232e8040 to your computer and use it in GitHub Desktop.
Save mutewinter/da2f18d694be232e8040 to your computer and use it in GitHub Desktop.
Trello Userstyle to Show Label Names and Order Black Labels First
.list-card-labels .card-label {
font-weight: bold;
color: #eee !important;
text-transform: uppercase;
letter-spacing: 0.1em !important;
line-height: 14px !important;
height: auto !important;
padding: 0 5px !important;
margin-right: 0 !important;
width: auto !important;
text-shadow: none !important;
font-size: 8px !important;
opacity: .8 !important;
order: 2;
margin-left: auto !important;
}
.list-card-labels {
display: flex !important;
justify-content: space-between;
}
.list-card-labels .card-label.card-label-black {
order: 1;
margin-left: 0 !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment