
.MessageLabel.colored {
    /* See also ColoredStringLabel */
    display: inline-block;
    padding: 0 2px;
    border-radius: 2px;
}

.MessageLabel {
    /* PATTERN: Break and wrap content */
    overflow: hidden;
    overflow-wrap: break-word;
    word-wrap: break-word;  /* Legacy alias for overflow-wrap */
    /* word-break: break-word; This is too aggressive as a default */
    text-overflow: ellipsis;
}
