From 180139cd9244b6d6c7fc3b22e37d691215790359 Mon Sep 17 00:00:00 2001 From: "Mahdi Cheikh Rouhou (macr)" <macr@odoo.com> Date: Wed, 17 May 2023 15:43:45 +0000 Subject: [PATCH] [FIX] web : align number on right in rtl lang Numbers should be alinged on the right in rtl langauge same as ltr langs Steps to reproduce the isse : 1- Change the language to arabic 2- To to the list of invoices in accounting and you can see that the numbers are aligned to the left The origin of the problem is that rtlcss reverse the alignment from right to left opw-3295573 closes odoo/odoo#121689 Signed-off-by: Bruno Boi (boi) <boi@odoo.com> --- addons/web/static/src/views/list/list_renderer.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/web/static/src/views/list/list_renderer.scss b/addons/web/static/src/views/list/list_renderer.scss index 2fd2d7bee466..75047aa8d980 100644 --- a/addons/web/static/src/views/list/list_renderer.scss +++ b/addons/web/static/src/views/list/list_renderer.scss @@ -61,6 +61,7 @@ } &.o_list_number { + /*rtl:ignore*/ text-align: right; } &.o_list_text { -- GitLab