From 1e78dd829686626afdb7009ddba34993fd1f7dd8 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Wed, 8 Oct 2025 18:03:48 +0300 Subject: [PATCH] fix(client/rtl): tree chevron in the wrong direction --- apps/client/src/stylesheets/tree.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/client/src/stylesheets/tree.css b/apps/client/src/stylesheets/tree.css index df7d00bd7..976b434e2 100644 --- a/apps/client/src/stylesheets/tree.css +++ b/apps/client/src/stylesheets/tree.css @@ -62,6 +62,10 @@ span.fancytree-node.fancytree-hide { margin-inline-end: 5px; } +body[dir=rtl] .fancytree-node:not(.fancytree-loading):not(.fancytree-expanded) .fancytree-expander:before { + content: "\ea4d"; /* bx bx-chevron-left */ +} + .fancytree-loading span.fancytree-expander { background-image: none; display: inline-block;