I am using SfTextBox
on a Blazor server-side project with the material theme. The control is placed on a page with a dark background image. I have managed to make the color of the e-float-line to be a lighter color when the control is selected using the css below, however I would like to understand how to change the default/unselected color for the float line. Is this possible?
.e-custom.e-float-input.e-input-group:not(.e-float-icon-left) .e-float-line::before,
.e-custom.e-float-input.e-control-wrapper.e-input-group:not(.e-float-icon-left) .e-float-line::before,
.e-custom.e-float-input.e-control-wrapper.e-input-group:not(.e-float-icon-left) .e-float-line::after,
.e-custom.e-float-input.e-input-group:not(.e-float-icon-left) .e-float-line::after {
background: yellow;
}