Hi
When I convert a html page, with disabled input elements, EO.pdf has an error regarding the font color.
Using the example example below, the font color in the disabled input is grey (not fully black) in the pdf-document.
If I specify the color as #000000, it converts to the wrong color
Quote:<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
input
{
background-color: White;
color: Black;
}
input:disabled
{
background-color: White;
color:Black;
}
</style>
</head>
<body>
<input type="text" value="not disabled" />
<br />
<br />
<input type="text" disabled value="disabled" />
</body>
</html>
Best regards
Ole