devextreme-angular-template icon indicating copy to clipboard operation
devextreme-angular-template copied to clipboard

Long user names are not displayed correctly in user panel

Open hakimio opened this issue 5 years ago • 1 comments

Try using 15 character or longer user names in user panels to see the issue.

hakimio avatar May 14 '19 07:05 hakimio

CSS fix if someone needs it:

    .user-name {
        font-size: 14px;
        color: $base-text-color;
        margin-left: 5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: normal;
        width: 114px;
        text-align: left;
    }

hakimio avatar Oct 16 '19 08:10 hakimio