diff options
| author | milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2010-02-01 08:11:50 +0000 |
|---|---|---|
| committer | milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2010-02-01 08:11:50 +0000 |
| commit | 8d9b57d988bf9a22b06edd7e77ec4e598d7fc3fe (patch) | |
| tree | 4f9f505c07b56bcab19799d7339c3cb266e1ed7f /sandbox/html4strict | |
| parent | 2c7eb84d6a38d10a60fe19b15135153991035f1f (diff) | |
| download | docutils-8d9b57d988bf9a22b06edd7e77ec4e598d7fc3fe.tar.gz | |
Fix the too restrictive selector for nested counters.
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@6224 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'sandbox/html4strict')
| -rw-r--r-- | sandbox/html4strict/html4strict/html4css2.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sandbox/html4strict/html4strict/html4css2.css b/sandbox/html4strict/html4strict/html4css2.css index 67094b708..bbe4a8510 100644 --- a/sandbox/html4strict/html4strict/html4css2.css +++ b/sandbox/html4strict/html4strict/html4css2.css @@ -118,8 +118,8 @@ ol.upperroman > li:before { content: counter(item, upper-roman) ")"; } /* nested counters (1, 1.1, 1.1.1, etc) */ -ol.nested > li:before { - content: counters(item, ".") "."; +ol.nested li:before { + content: counters(item, ".") " "; } /* TODO: prefix, suffix? */ |
