<style>
/* Adjust height of the textbox */
.e-input-group input.e-input,
.e-float-input.e-input-group input,
.e-input-group.e-control-wrapper input.e-input,
.e-float-input.e-input-group.e-control-wrapper input,
.e-float-input input,
.e-float-input.e-control-wrapper input {
min-height: 18px;
}
/* Modify font size */
.e-float-input,
.e-float-input.e-control-wrapper {
font-size: 12px;
}
/* Font size for placeholder on top */
.e-float-input input:valid ~ label.e-float-text,
.e-float-input input ~ label.e-label-top.e-float-text,
.e-float-input.e-control-wrapper input:valid ~ label.e-float-text,
.e-float-input.e-control-wrapper input ~ label.e-label-top.e-float-text {
font-size: 12px;
}
/* Font size for placeholder on bottom */
label.e-float-text,
.e-float-input label.e-float-text,
.e-float-input.e-control-wrapper label.e-float-text,
.e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
.e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
font-size: 12px;
}
</style>
|
|
<style>
/* Adjust height of the Numeric textbox */
.e-input-group input.e-input,
.e-input-group.e-control-wrapper input.e-input {
min-height: 18px;
}
/* Modify font size */
.e-input-group,
.e-input-group.e-control-wrapper {
font-size: 12px;
}
/* Modify width and height of increment and decrement icon */
.e-input-group .e-input-group-icon,
.e-input-group.e-control-wrapper .e-input-group-icon {
min-height: 16px;
min-width: 16px;
}
.e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
font-size: 11px;
}
</style> |
<style>
/* Adjust height of the datepicker */
.e-input-group input.e-input,
.e-input-group.e-control-wrapper input.e-input {
min-height: 18px;
}
/* Modify font size */
.e-input-group,
.e-input-group.e-control-wrapper {
font-size: 12px;
}
/* Modify width, height and font-size of calendar icon */
.e-input-group-icon.e-date-icon,
.e-control-wrapper .e-input-group-icon.e-date-icon {
min-height: 16px;
min-width: 16px;
font-size: 14px;
}
</style> |
/* Adjust height and width of clear icon */
.e-input-group .e-clear-icon,
.e-input-group.e-control-wrapper .e-clear-icon.e-input-group .e-clear-icon,
.e-input-group.e-control-wrapper .e-clear-icon {
min-height: 16px;
min-width: 16px;
}
/* Adjust font size of clear icon */
.e-input-group .e-clear-icon::before,
.e-input-group.e-control-wrapper .e-clear-icon::before {
font-size: 10px;
} |
|