| Summary: | [Text] Double "cancel" icons in IE 10 | ||
|---|---|---|---|
| Product: | [RT] RAP | Reporter: | Tim Buschtoens <tbuschto> |
| Component: | RWT | Assignee: | Project Inbox <rap-inbox> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P2 | CC: | tbuschto |
| Version: | 2.1 | ||
| Target Milestone: | 2.1 RC1 | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
|
Description
Tim Buschtoens
The only place where we could define these pseudo class selectors (-ms-clear and -ms-reveal) is rwt-index.html. We already have some element styles there (for basic markup elements). Any better suggestions? Putting it in the index.html is fine, but we should not bother other browser with unkown CSS properties. Using conditional comments would work here: http://msdn.microsoft.com/en-us/library/ms537512%28v=vs.85%29.aspx I.e. <!--[if gte IE 10]> <css stuff> <![endif]--> (In reply to comment #2) > Putting it in the index.html is fine, but we should not bother other browser > with unkown CSS properties. Using conditional comments would work here: > http://msdn.microsoft.com/en-us/library/ms537512%28v=vs.85%29.aspx Tim, the conditional comments are not supported in IE10. In the link above there is an important section: "Important As of Internet Explorer 10, conditional comments are no longer supported by standards mode." Fixed with commit 66b8d0fa4c5b35f27e13bd22c4e53af038ae3076. |