From 5e0c68c45e07e3dfa943558539a6d7e2819437bc Mon Sep 17 00:00:00 2001 From: cN3rd Date: Fri, 3 Sep 2021 17:53:49 +0300 Subject: [PATCH] Fix icons when using RTL --- src/theme/css/chrome.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/theme/css/chrome.css b/src/theme/css/chrome.css index 2960e26c..2acd99c9 100644 --- a/src/theme/css/chrome.css +++ b/src/theme/css/chrome.css @@ -188,6 +188,10 @@ a > .hljs { left: var(--page-padding); } +/* Use the correct buttons for RTL layouts*/ +[dir=rtl] .previous i.fa-angle-left:before {content:"\f105";} +[dir=rtl] .next i.fa-angle-right:before { content:"\f104"; } + @media only screen and (max-width: 1080px) { .nav-wide-wrapper { display: none; } .nav-wrapper { display: block; }