html - How to change the height of a numeric textbox input -


does know how change height of numeric textbook input css? i'm finding using simple style - height="20px" resize input not input wrapper. tried applying style parent div , doesn't work. i'm relatively new kendo ui i'm not hugely experienced did not find useful within documentation. suggestions useful.

you can try style:

.k-numeric-wrap input {     height: 50px !important; } 

and fixing decrease arrow(but i'm not sure if idea use since uses position: absolute):

.k-numeric-wrap .k-link:last-child {     position: absolute;     bottom: 0;     margin-left: 7px; } 

demo.

you have fix font size too.


Comments

Popular posts from this blog

jOOQ update returning clause with Oracle -

java - Warning equals/hashCode on @Data annotation lombok with inheritance -

java - BasicPathUsageException: Cannot join to attribute of basic type -