From 7febd3ff5c9260657825a0912cec29a4cb7f6c86 Mon Sep 17 00:00:00 2001 From: John McLear Date: Tue, 6 Nov 2012 12:37:35 +0000 Subject: [PATCH] Resolve #583 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This kinda resolves the issue but not in a very graceful way.  It means any numbered items > 99 will still be cropped. The problem is due to no padding/margin and then needing to specify margin. you can replicate this bug with ```
     
  1.   1  
  2.  
  3.   1  
  4.  
  5.   1  
  6.  
  7.   1  
  8.  
  9.   1  
  10.  
  11.   1  
  12.  
  13.   1  
  14.  
  15.   1  
  16.  
  17.   1  
  18.  
  19.   1  
  20.  
  21.   1  
``` --- src/static/css/iframe_editor.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/static/css/iframe_editor.css b/src/static/css/iframe_editor.css index 4fcd955f..bca00ff4 100644 --- a/src/static/css/iframe_editor.css +++ b/src/static/css/iframe_editor.css @@ -1,4 +1,3 @@ - /* These CSS rules are included in both the outer and inner ACE iframe. Also see inner.css, included only in the inner one. */ @@ -39,7 +38,7 @@ ul.list-bullet6 { list-style-type: square; } ul.list-bullet7 { list-style-type: disc; } ul.list-bullet8 { list-style-type: circle; } -ol.list-number1 { margin-left: 1.5em; } +ol.list-number1 { margin-left: 1.9em; } ol.list-number2 { margin-left: 3em; } ol.list-number3 { margin-left: 4.5em; } ol.list-number4 { margin-left: 6em; }