/* $Id: syntax_plugin_lists.css,v 1.5 2008/03/28 11:40:21 matthias Exp $ Cascading Style Sheet for LISTS syntax plugin Copyright (C) 2005, 2007 M.Watermann, D-10247 Berlin, FRG EMail : NOTE: This file is _not_ used by DokuWiki! It is provided for informational purposes only. If you want to change the styling rules either change the settings in the file "style.css" or rename this file to "style.css". */ /* Unfortunately DokuWiki's CSS processing seems to be broken: Instead of first loading some (unspecific) defaults and only afterwards the plugin CSS (allowing it to extend or replace the defaults) the CSS files are loaded in mixed order :-( */ ol, ul, div.dokuwiki ol, div.dokuwiki ul { list-style-position: outside; list-style-image: none; /* allow for at least two characters in LI's number */ margin: 0 0 0.6ex 0; padding: 0 0 0 1ex; background: #fff; color: #000; text-align: left; line-height: 1.4; /* allow for ascenders/descenders */ } ol li, ul li { padding: 0; } ol li { margin: 0 0 0 3.5ex; /* room enough for three digits plus dot */ } ul li { margin: 0 0 0 2ex; /* just wide enough for a circle/square etc. */ } ol li div, ul li div, ol li p, ul li p { margin: 0; padding: 0; font-weight: normal; } ul { list-style-type: disc; } ul ul { list-style-type: square; } ol { list-style-type: decimal; } ol ol { list-style-type: upper-roman; } ol ol ol { list-style-type: lower-alpha; } ol ol ol ol { list-style-type: lower-greek; } /* superflous markup by DokuWiki std lists (wasting bandwidth) */ ol li div.li, ul li div.li { display: inline; } /* _EoF_ */