
.MessageLabel.colored {
    /* See also .ColoredStringLabel */
    /* See also .select2-customized-option .main-title.colored-string */
    display: inline-block;
    padding: 0 2px;
    border-radius: 2px;
}

/* See RichStringLabel.css */
.MessageLabel.html > pre {
    margin: 0;
    white-space: pre-wrap;
}

/* See RichStringLabel.css */
.MessageLabel.html > p {
    margin: 0;
}

.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;
}
