From 65fc1437dc497bc7a7f99ff9363dbcb47dc6608a Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Sat, 9 Feb 2019 15:30:57 -0500 Subject: [PATCH] Fix wiki image float and margins on rtl layout --- css/80_app.css | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/css/80_app.css b/css/80_app.css index f7028d98b..bcd8ee8b2 100644 --- a/css/80_app.css +++ b/css/80_app.css @@ -1112,11 +1112,12 @@ a.hide-toggle { img.tag-reference-wiki-image { float: right; width: 33.3333%; - width: -webkit-calc(33.3333% - 10px); - width: calc(33.3333% - 10px); border-radius: 4px; - max-height: 200px; - margin: 10px 5px 15px 20px; + margin: 10px 5px 15px 10px; +} +[dir='rtl'] img.tag-reference-wiki-image { + float: left; + margin: 10px 10px 15px 5px; }