HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

CSS Fix for long names

AdrianAdrian Wandering SpiritMontreal MVP

I ran into a situation with a user with a really long name. If the same happens to you, use the code below and it will add a "..." so the point board looks cleaner :)

    li.plbanchor
    a {
    max-width:130px;
        display:inline-block;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

Comments

Sign In or Register to comment.