Page MenuHomePhabricator

Fix list-style of mwEmbed menu items
Closed, ResolvedPublic

Description

I see a blue bullet in the li items of the player and the sequencer. This is the ul list-style-image of the vector skin. It is attempted to override this using "list-style-type: none", but that is not successful for all browsers.

To really unset a list style such as that, use:
list-style: none none;

Note the double none, because list-style is a compounded type of list-style-type and list-style-image. This was tested and confirmed working for another ul element that had similar issues. The Template:Unbulleted list of the English Wikipedia. http://en.wikipedia.org/w/index.php?title=Template:Unbulleted_list


Version: unspecified
Severity: normal

Details

Reference
bz25494

Event Timeline

bzimport raised the priority of this task from to Medium.Nov 21 2014, 11:17 PM
bzimport set Reference to bz25494.

mdale wrote:

thanks for the easy fix ( r74648 ), I was meaning to look into that.