From 80a842bd32ae427e628c14592e6ddf1f5e7327af Mon Sep 17 00:00:00 2001 From: fim100 <107080649+fim100@users.noreply.github.com> Date: Fri, 9 Aug 2024 08:12:42 +0330 Subject: [PATCH] fix icon position in dashboard --- umap/static/umap/content.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/umap/static/umap/content.css b/umap/static/umap/content.css index 1ddf6067..1d1a3a7d 100644 --- a/umap/static/umap/content.css +++ b/umap/static/umap/content.css @@ -358,6 +358,11 @@ ul.umap-autocomplete { .content .icon-delete { background-image: url('./img/icon-delete.svg'); } +html[dir="rtl"] .content .icon-edit, +html[dir="rtl"] .content .icon-share, +html[dir="rtl"] .content .icon-delete { + background-position: initial; /* this takes precedence over similar selector in icon.css and fixes position */ +} .table-header { display: flex; justify-content: space-between;