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;
}