/*
 * Restore the unread-message indicator color that was removed from the Elastic
 * skin in upstream commit 9427ec1d35445170cd5d25b3aae9b69950610c3b
 * (PR roundcube/roundcubemail#7141 — "Mouse-over menu on messages list").
 *
 * Values match the original LESS rules:
 *   - light mode: @color-list-unread-status = @color-warning = #ffd452
 *   - dark mode:  darken(@color-warning, 30%) ≈ #b89300
 * See skins/elastic/styles/colors.less for the source variables.
 */

.messagelist td.subject span.msgicon.status.unread:before {
    color: #ffd452;
}

html.dark-mode .messagelist tr:not(.flagged):not(.deleted) td.subject span.msgicon.status.unread:before {
    color: #b89300;
}
