1/*	$Id: syntax_plugin_lists.css,v 1.5 2008/03/28 11:40:21 matthias Exp $
2
3	Cascading Style Sheet for LISTS syntax plugin
4	Copyright (C) 2005, 2007  M.Watermann, D-10247 Berlin, FRG
5	EMail : <support@mwat.de>
6
7	NOTE:
8		This file is _not_ used by DokuWiki!
9		It is provided for informational purposes only.
10		If you want to change the styling rules either change the settings
11		in the file "style.css" or rename this file to "style.css".
12*/
13
14
15/*	Unfortunately DokuWiki's CSS processing seems to be broken:
16	Instead of first loading some (unspecific) defaults and only
17	afterwards the plugin CSS (allowing it to extend or replace the
18	defaults) the CSS files are loaded in mixed order :-(
19 */
20ol,
21ul,
22div.dokuwiki ol,
23div.dokuwiki ul {
24	list-style-position:	outside;
25	list-style-image:	none;
26	/* allow for at least two characters in LI's number */
27	margin:			0 0 0.6ex 0;
28	padding:		0 0 0 1ex;
29	background:		#fff;
30	color:			#000;
31	text-align:		left;
32	line-height:	1.4;	/* allow for ascenders/descenders */
33}
34ol li,
35ul li {
36	padding:		0;
37}
38ol li {
39	margin:		0 0 0 3.5ex;	/* room enough for three digits plus dot */
40}
41ul li {
42	margin:		0 0 0 2ex;	/* just wide enough for a circle/square etc. */
43}
44ol li div,
45ul li div,
46ol li p,
47ul li p {
48	margin:			0;
49	padding:		0;
50	font-weight:	normal;
51}
52ul {
53	list-style-type:	disc;
54}
55ul ul {
56	list-style-type:	square;
57}
58ol {
59	list-style-type:	decimal;
60}
61ol ol {
62	list-style-type:	upper-roman;
63}
64ol ol ol {
65	list-style-type:	lower-alpha;
66}
67ol ol ol ol {
68	list-style-type:	lower-greek;
69}
70
71/* superflous markup by DokuWiki std lists (wasting bandwidth) */
72ol li div.li,
73ul li div.li {
74	display:	inline;
75}
76/* _EoF_ */
77