Hi Nino,

On Sun, Jan 25, 2009 at 10:14 AM, Nino Novak <[email protected]> wrote:
> [...]
> if you delete (or comment out) line 22 in main.css:
> ol li { background-image: none; }
> the bullets will reappear. I did not notice any side effects, but of
> course there could be some.

I've sent a fix to Clayton recently for this and some other minor issues.

ol li { backgroun-display: none } is currently important because it
hides the bullet image for ordered lists (so that only numbers will
show up). This is because the ul li style specifies a background
image, and that style applies to all <li> tags that are nested under
an <ul> tag, even if their more immediate parent is an <ol> tag.

The most elegant solution I can think of is changing ul li { ... }
style to ul > li { ... }. That will let us get rid of the ol li {...}
style, and will only apply the background image to li tags that have
<ul> as their immediate parent. There are many other ways to fix this,
but from a few basic local tests, this solution worked fine. The OOo
wiki will provide the 'real world' test :)

Regards,
Ivan.

Regards,
Ivan.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to