I recently developed a mobile-friendly web application using GWT/mGWT. The interface features white input text boxes with dark gray text. Despite successful testing, I encountered an issue when viewing the app on the Android Browser - the text displayed as white-on-white, rendering it invisible. Various CSS adjustments I attempted failed to resolve this problem.
.my-textBox {
color: #555 !important;
background-color: #FFFFFF !important;
border: 1px solid #A8A8A8;
}