I am using Kendo UI with ASP MVC3 to build some forms. I am using the dropdown and datepicker widgets, which are styled larger that standard inputs. To ensure standard textboxes will match, Kendo has provided the .k-textbox
class, which when assigned to a textbox, will style it to match the widgets.
I have created a template that does the job but is requiring a little extra coding to handle some conflicts, no biggie. However, I was wondering if there was a way to make an attribute selector (eg: input[type="text"]
) inherit the style from another styled class. So could I make input[type=:text"]
use the same styles as .k-textbox
, without copying all the class data over?