The problem is that the SetInputControlsHighlight sub in Helpers.
vb does not restore original CssClass in the onblur event.
Replace this line:
Code:
wctl.Attributes.Add("onblur", "this.className = '';")
With this code:
Code:
wctl.Attributes.Add("onblur", String.Format("this.className = '{0}';", wctl.CssClass)) 'FIX: restores control's original style