Posted by eosrei on November 15, 2008 at 10:39pm
| Project: | Popup Message Box |
| Version: | 5.x-1.0 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
Since the JS is slow in IE6/7, the JS addition of the X, warning, or check icon tiles across the entire message box momentarily during load.
Changing the last couple lines of popup_msg.css would stop the tiling problem.
Change:
div.status {
background-image: url(status-info.png);
}
div.error {
background-image: url(status-error.png);
}
div.warning {
background-image: url(status-warning.png);
}To:
div.status {
background: url(status-info.png) no-repeat;
}
div.error {
background: url(status-error.png) no-repeat;
}
div.warning {
background: url(status-warning.png) no-repeat;
}