View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0000795 | OXID eShop (all versions) | 3.1. Design, GUI, UX | public | 2009-04-14 11:02 | 2009-04-14 11:20 |
| Reporter | alfonsas_cirtautas | Assigned To | |||
| Priority | low | Severity | minor | Reproducibility | always |
| Status | resolved | Resolution | fixed | ||
| Product Version | 4.1.0 revision 17976 | ||||
| Fixed in Version | 4.2.0 revision 23610 | ||||
| Summary | 0000795: IE8 (strict mode) popup mask is not transparent | ||||
| Description | if IE8 is not in compatibility view mode, black popup mask is not transparent | ||||
| Additional Information | Due to IE8 css parser changes following expression doesn't work anymore filter:Alpha(Opacity=0) it has to be replaced with filter: -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; | ||||
| Tags | No tags attached. | ||||
| Attached Files | |||||
| Theme | |||||
| Browser | Internet Explorer 8.x | ||||
| PHP Version | 5.2.6 | ||||
| Database Version | 5.0.33 | ||||
|
|
quick fix is to add the following lines after css includes in _header.tpl and _header_plain.tpl files <!--[if IE 8]><style type="text/css"> #mask.on,div.bar.links a.language.act img,#body #demoAdminLink {-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";} </style><![endif]--> |
|
|
Fixed new ie8 opacity filter syntax, + IE css compatibility files slitted to different files depending on version |