From bf19e0c4869f85ff30ed17f74d86e38a2b23dd73 Mon Sep 17 00:00:00 2001 From: Wes Cossick Date: Wed, 28 Apr 2021 08:54:16 -0500 Subject: [PATCH] Limit application of RTL rules --- invoice.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/invoice.html b/invoice.html index 8d99a42..f74be6f 100644 --- a/invoice.html +++ b/invoice.html @@ -84,16 +84,16 @@ } /** RTL **/ - .rtl { + .invoice-box.rtl { direction: rtl; font-family: Tahoma, 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif; } - .rtl table { + .invoice-box.rtl table { text-align: right; } - .rtl table tr td:nth-child(2) { + .invoice-box.rtl table tr td:nth-child(2) { text-align: left; }