From f14bbfe55fe79b25d616ecedaa65f2f313b0db89 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 29 Apr 2005 08:26:56 +0000 Subject: [PATCH] * (bug 725) Let dir="ltr" attribute work again in MonoBook By CSS2's rules, the 'body * { direction: rtl; }' actually overrides any explicit dir="ltr" attribute on any element in the body. Letting the value just inherit from body should work fine (tested briefly in Safari 1.3, Firefox 1.0.3, and IE 6.0 on XP SP2). --- skins/monobook/rtl.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/skins/monobook/rtl.css b/skins/monobook/rtl.css index fe22ac2b97..c7b3ae5a4d 100644 --- a/skins/monobook/rtl.css +++ b/skins/monobook/rtl.css @@ -22,8 +22,7 @@ To test: * etc */ -body, -body * { +body { direction: rtl; /* unicode-bidi: bidi-override;*/ unicode-bidi: embed; -- 2.20.1