The ".input-validation-error" style isn't being applied to textboxes (the style is not being over-ruled) but the error messages are being displayed for the textboxes.
However, that style is being applied to the drop down lists on the same page.
The page is using server-side validation only.
I'm new to MVC so I don't even know where to begin on this.
<td class="editor-field">
<%= Html.EditorFor(model => model.DomainEntity.Member.City) %>
<%= Html.ValidationMessageFor(model => model.DomainEntity.Member.City) %>
</td>
[DisplayName("City")]
[Required(ErrorMessage = "City is required")]
[StringLength(30, ErrorMessage = "City must be under 30 characters.")]
[HtmlProperties(CssClass = "med", MaxLength = 30)]
public virtual string City { get; set; }