I am having trouble with some Site CSS box-sizing interfering with the Kendo DatePicker.
The problem is some standard CSS is globally applied to all text inputs with the following CSS:
input[type=
"text"
], input[type=
"password"
] {
border-color
:
#cdcdcd
;
border-style
:
solid
;
border-radius:
3px
;
border-width
:
1px
;
border-radius:
3px
;
height
:
32px
;
padding
:
8px
8px
8px
8px
;
box-sizing: border-box;
/* Remove this, date picker displays ok but text box too big */
}
This causes a grey line to appear at the bottom of the DatePicker which I want to get rid off. The problem seems to stem from the box-sizing css property above. Remove this, the grey area is removed. However, the text input appears too big.
I have prepared a Dojo example for this:
http://dojo.telerik.com/@andez2000/eHEZA/17
Any help is appreciated