From 6f8c3359ed6e531edd9eed81dd033514feb6a802 Mon Sep 17 00:00:00 2001 From: "Amir E. Aharoni" Date: Tue, 18 Aug 2015 12:41:03 +0300 Subject: [PATCH] Prevent the jumbling up of autocomments in RTL Change-Id: I75f66dcd839ead0759f4c6e90ab0ddbc905a07d9 --- resources/src/mediawiki.legacy/shared.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/resources/src/mediawiki.legacy/shared.css b/resources/src/mediawiki.legacy/shared.css index 14fd286db2..7e171cffa3 100644 --- a/resources/src/mediawiki.legacy/shared.css +++ b/resources/src/mediawiki.legacy/shared.css @@ -417,6 +417,11 @@ p.mw-upload-editlicenses { /* The auto-generated edit comments */ .autocomment { color: gray; + /* In RTL wikis, Latin heading sections can get jumbled with comments that + begin with Latin letters or numbers */ + unicode-bidi: -moz-isolate; + unicode-bidi: -webkit-isolate; + unicode-bidi: isolate; } #pagehistory .history-user { -- 2.20.1