Hi all,
There is an appearance difference for disabled fields in IE8 vs IE11:
IE8:
IE11:
How can I change background color for IE11 to white?
Where and what is the css file where can I made these changes?
Thx all,
Dan.
I found that I can modify in webforms.css file under /wdk/theme/documentum/css.
I found that it use defaultTextStyle class and I modified this class in webforms.css file
<input name="docview_contents_docview_contents_docview_contents_xform1_C24_0_value_0_0" title="" disabled="disabled" class="defaultTextStyle" id="docview_contents_docview_contents_docview_contents_xform1_C24_0_value_0_0" style="text-align: left; width: 105px;" onchange="setKeys(event);safeCall(XFormsValidator.run,this,"true","maxLength::128||pattern::^[A-Z ]*$","C24");" type="text" value="..."/>
But, there is also a calendar widget in page who has this html source
<input name="docview_contents_docview_contents_docview_contents_xform1_DateField1_0_value_0_date_0" title="" disabled="disabled" style="width: 120px;" onchange="setKeys(event);safeCall(XFormsValidator.run,this,"true","validateDatatype::date::MMM d, yyyy","DateField1");" type="text" value="Jun 1, 2015"/>
And its style is inline. How can I modify also this style?
Thx,