When using a text-field with a background-image style, the following CSS is applied:
.leftPaneContent INPUT {
background-color: #FFFFFF;
background-image: url("../images/icon-search-large.png");
background-position: 4px 3px;
background-repeat: no-repeat;
border: 1px solid #D1D1D1;
height: 14px;
margin: 5px 0 5px 3px;
overflow: hidden;
padding: 2px 10px 4px 23px;
width: 85%;
}
In Firefox, the image displays correctly even with a long input value. However, in Internet Explorer, the image gets overwritten with a long input value.
An example of the issue can be seen in the image below in IE:
Is there a solution to this problem?