You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, the HTML report has an invalid CSS style within it. It is attempting to defining a background color in the table header to have an alpha value. This is the currently offending line.
Currently, CSS color properties do not support defining an RGBA color from an 8 hexidecimal characters value (only using the rgba functions). See CSS Color Module Level 3 Recommendation.
At the moment, the HTML report has an invalid CSS style within it. It is attempting to defining a background color in the table header to have an alpha value. This is the currently offending line.
Currently, CSS color properties do not support defining an RGBA color from an 8 hexidecimal characters value (only using the
rgba
functions). See CSS Color Module Level 3 Recommendation.Defining RGBA colors from hex is tentatively slated for the future. See CSS Color Module Level 4 Editor's Draft.
We should either use a non-transparent color there or we should use the
rgba
function to generate the desired color.The text was updated successfully, but these errors were encountered: