Apply with https://userstyles.org or http://fluidapp.com.
Last active
December 9, 2015 19:55
-
-
Save mutewinter/da2f18d694be232e8040 to your computer and use it in GitHub Desktop.
Trello Userstyle to Show Label Names and Order Black Labels First
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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