From fb610e619ad70d4d736547223c09e5f7e4656d43 Mon Sep 17 00:00:00 2001 From: "garry.yao" Date: Wed, 24 Aug 2011 15:03:43 +0000 Subject: [PATCH] #8049: force html list padding in content css. git-svn-id: https://svn.ckeditor.com/CKEditor/trunk@7224 da63caf2-3823-0410-a1e8-d69ccee00dfb --- CHANGES.html | 1 + contents.css | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGES.html b/CHANGES.html index d079b1b1d1..4fb03f43b9 100644 --- a/CHANGES.html +++ b/CHANGES.html @@ -70,6 +70,7 @@

  • #8087 : Indenting list items may add redundant text direction attributes.
  • #6200 : Styling for certain dialog element type that miss focus outline like checkbox.
  • #7894 : Fault tolerance when parsing malformed link.
  • +
  • #8049 : Bullets/Numbers are invisible on list items with LTR text direction.
  • Updated the following language files:
    • #8128 : Italian;
    • #8126, #8256 : Norwegian (BokmÃ¥l and Nynorsk);
    • diff --git a/contents.css b/contents.css index 98fe2d1c0f..e7257b3e89 100644 --- a/contents.css +++ b/contents.css @@ -20,6 +20,6 @@ ol,ul,dl { /* IE7: reset rtl list margin. (#7334) */ *margin-right:0px; - /* preserved spaces for rtl list item bullets. (#6249)*/ - padding-right:40px; + /* preserved spaces for list items with text direction other than the list. (#6249,#8049)*/ + padding:0 40px; }