rbelow / blueprintcss

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

<ul> hanging off of left edge of grid #40

Closed GoogleCodeExporter closed 8 years ago

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

<ul> 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:22

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:45