kirubaharan12345 / blueprintcss

Automatically exported from code.google.com/p/blueprintcss
0 stars 0 forks source link

<ol> numbers hanging off of left edge of grid #39

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
The numbers displayed to the left of an ordered list are hanging off of the
left edge of the grid.

<ol> left edge should be in line with body text.

Original issue reported on code.google.com by glenn.re...@gmail.com on 8 Sep 2007 at 9:21

GoogleCodeExporter commented 8 years ago
fixed:

macbook-pro:~/src/svk/blueprintcss glenn$ svk diff
=== blueprint/trunk/blueprint/lib/typography.css
==================================================================
--- blueprint/trunk/blueprint/lib/typography.css        (revision 2125)
+++ blueprint/trunk/blueprint/lib/typography.css        (local)
@@ -59,7 +59,7 @@
 p img.top   { margin-top:0; } /* Use this if the image is at the top of the <p>. */
 img         { margin: 0 0 1.5em; }

-ul, ol      { margin: 1.5em 0; }
+ul, ol      { margin: 1.5em 0; list-style-position: inside; }
 ul          { list-style-type: circle; }
 ol          { list-style-type: decimal; }
 dl          { margin: 1.5em 0; }

Original comment by glenn.re...@gmail.com on 8 Sep 2007 at 10:44