This question is locked. New answers and comments are not allowed.
Using the Default theme, in all of the DropDownList demos the text color is black and no styling is being applied, so I assumed the default text color for the Default theme is black. However, when I create a DropDownList using the Default theme, the text color is dark gray, not black (see the attached screenshot which is created using the code below).
Of course, I can set the text color to black via HtmlAttributes and DropDownHtmlAttributes, but I don't want to do this in case we decide to use a different theme in the future.
What is the text color supposed to be with the Default theme?
Thanks.
<%= Html.Telerik().DropDownList().Name( "ShowSelected" ) .Items( item => { item.Add().Text( "Show all transactions" ).Value( "1" ); item.Add().Text( "Show selected transactions" ).Value( "2" ); item.Add().Text( "Hide selected transactions" ).Value( "3" ); } ) .SelectedIndex( Profile.SelectOption - 1 ) .ClientEvents( events => events.OnChange( "onShowSelectedChange" ) ) .HtmlAttributes( new { style = "width:200px" } ) %>