I have 2 CSS files (Compiled from SASS) that represent RTL and LTR design. I also Have 2 separate HTML files, Each with their own reference to the CSS files:
RTL:
<link rel="stylesheet" href="/css/ltr/app.css" />
LTR:
<link rel="stylesheet" href="/css/rtl/app.css" />
The dropdown is represented in the same way in both HTML files:
<a href="#" data-dropdown="some-dropdown" class="tiny content radius button dropdown">
When using the RTL CSS file, the dropdown works fine. But when using the LTR one, It remains open no matter where I click.
Any Ideas?
Thanks,
Dana