From 338681f28beb7de756cec5249c6f104b1c7aa850 Mon Sep 17 00:00:00 2001 From: akwizgran <michael@briarproject.org> Date: Mon, 29 Mar 2021 17:58:03 +0100 Subject: [PATCH] Float images to the left for RTL languages. --- themes/briar-manual/static/css/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/themes/briar-manual/static/css/style.css b/themes/briar-manual/static/css/style.css index 4a98a8e..ed139fe 100644 --- a/themes/briar-manual/static/css/style.css +++ b/themes/briar-manual/static/css/style.css @@ -97,6 +97,10 @@ img { border:1px solid #000000; } +img:dir(rtl) { + float:left; +} + header { width:270px; float:left; -- GitLab