Posted by designerbrent on September 2, 2007 at 6:56pm
2 followers
| Project: | Administration menu |
| Version: | 5.x-1.x-dev |
| Component: | CSS / Browser Support |
| Category: | bug report |
| Priority: | normal |
| Assigned: | sun |
| Status: | closed (fixed) |
Issue Summary
I was trying to embed some flash video on a page and use the admin_menu but found that anytime the admin_menu was enabled (IE: when I was logged) the Flash video did not display in Firefox 2.0.0.6 on the Mac. The audio would play but he video would only show up sporadically.
The fix that I found was to remove make the following change to the css file on line 23:
Original:#admin_menu li li { width: 160px; background: #202020; filter:Alpha(opacity=88); -moz-opacity: 0.88; }
New:#admin_menu li li { width: 160px; background: #202020; filter:Alpha(opacity=88);}
After making this change, it seemed to fix the problem for me.
Comments
#1
According to Mozilla's CSS spec for -moz-opacity this property should be replaced by
opacity.Please let me know, if attached patch works for you.
#2
Committed to all branches.
#3