From c62df4287d24ba887b0c588b62d375b1f078852c Mon Sep 17 00:00:00 2001
From: Mohammad Damavandi <mdf092@gmail.com>
Date: Sun, 28 May 2017 11:54:58 +0430
Subject: [PATCH] Update introjs-rtl.css

The progress bullets in RTL version were started form left and now start from right for RTL languages
---
 introjs-rtl.css | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/introjs-rtl.css b/introjs-rtl.css
index 0e7fb8a5d..ec102d9b8 100644
--- a/introjs-rtl.css
+++ b/introjs-rtl.css
@@ -19,4 +19,8 @@
   -webkit-border-radius: 0.2em 0 0 0.2em;
   -moz-border-radius: 0.2em 0 0 0.2em;
   border-radius: 0.2em 0 0 0.2em;
-}
\ No newline at end of file
+}
+
+.introjs-bullets ul li {
+    float: right;
+}