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.

CommentFileSizeAuthor
#1 admin_menu.css__0.patch902 bytessun

Comments

sun’s picture

Assigned: Unassigned » sun
Status: Active » Needs review
StatusFileSize
new902 bytes

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.

sun’s picture

Title: Conflict running admin_menu with swfobject » Use opacity instead of -moz-opacity
Status: Needs review » Fixed

Committed to all branches.

Anonymous’s picture

Status: Fixed » Closed (fixed)