Author: mcbrown
Date: 2007-12-08 10:11:49 +0100 (Sat, 08 Dec 2007)
New Revision: 9212
Log:
Explicitly setting bullet list styles
Modified:
trunk/xsl.d/mysql-html.css
Modified: trunk/xsl.d/mysql-html.css
===================================================================
--- trunk/xsl.d/mysql-html.css 2007-12-08 04:26:49 UTC (rev 9211)
+++ trunk/xsl.d/mysql-html.css 2007-12-08 09:11:49 UTC (rev 9212)
Changed blocks: 1, Lines Added: 42, Lines Deleted: 1; 1469 bytes
@@ -596,24 +596,65 @@
font-size: 100%;
}
+div.itemizedlist ul
+{
+ list-style: disc outside;
+}
+
div.itemizedlist ul li
{
font-size: 100%;
+ list-style-position: outside;
+ list-style-image: none;
list-style-type: disc;
+ vertical-align: top;
}
+div.orderedlist ol li
+{
+ font-size: 100%;
+ list-style-position: outside;
+ list-style-image: none;
+ list-style-type: decimal;
+ vertical-align: top;
+}
+
div.itemizedlist ul li div.itemizedlist ul li
{
font-size: 100%;
+ list-style-position: outside;
+ list-style-image: none;
list-style-type: square;
+ vertical-align: top;
}
+div.orderedlist ol li div.orderedlist ol li
+{
+ font-size: 100%;
+ list-style-position: outside;
+ list-style-image: none;
+ list-style-type: lower-alpha;
+ vertical-align: top;
+}
+
div.itemizedlist ul li div.itemizedlist ul li div.itemizedlist ul li
{
font-size: 100%;
+ list-style-position: outside;
+ list-style-image: none;
list-style-type: circle;
-;
+ vertical-align: top;
}
+
+div.orderedlist ol li div.orderedlist ol li div.orderedlist ol li
+{
+ font-size: 100%;
+ list-style-position: outside;
+ list-style-image: none;
+ list-style-type: decimal;
+ vertical-align: top;
+}
+
/* Formatting for <para role="es"> (Enterprise Server only) */
p.es
| Thread |
|---|
| • svn commit - mysqldoc@docsrva: r9212 - trunk/xsl.d | mcbrown | 8 Dec |