I'm currently exploring options to customize the command column gridview buttons so they have consistent sizes. I've applied a CssClass to the gridview as shown below:
.gvbutton input {
width: 79px;
height: 28px;
}
The issue I'm facing is that while this code ensures my command column buttons are uniform in size, it also limits the length of text in the edit textbox to 79px. Is there a way to apply the CSS only to the button and not affect the textbox?