Vue-js-modal: Arabic Problem Position

Created on 4 Oct 2019  路  7Comments  路  Source: euvl/vue-js-modal

Problem:

When the body has direction: rtl, the position of the modal is way off.
The left should be switch to right. Any suggestion how to do an hack of this?
...

Example & screenshots:

image

...

I have checked stackoverflow for solutions and 100% sure that issue not in my code.

stale

Most helpful comment

I add a custom css in v--modal
.v--modal {
text-align: right;
left: 0px !important;
margin: 0 auto;
}

All 7 comments

this happens because the modal is positioned using an absolute left style. you can go around it using this dirty hack.

edit to remove the hack code.

Thanks for this. I was think about that but for this is a hack, and also what will we do if there is an screen resize or I think that we can drag the modal, we need to think of this use case.

My aproach was different.

  • detect the direction or language on the body ( direction: rtl )
  • if arabic apply a class on the modal wrapper to change the direction ( direction: ltr ).
  • if arabic apply a class on component inside the modal ( direction: rtl )

Hope these solution will help other developers.

i concede that your approach is absolutely cleaner and way simpler 馃槃

I add a custom css in v--modal
.v--modal {
text-align: right;
left: 0px !important;
margin: 0 auto;
}

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

This issue has been automatically closed.

I handled this issue like this.

<div :class="{'ltr': $i18n.locale === 'ar'}">
  <modal name="subscribe" height="auto" :scrollable="true">
    <div class="text-center pt-5 lg:pt-0" :class="{'rtl': $i18n.locale === 'ar'}">
      <!-- content goes here -->
    </div>
  </modal>
</div>
Was this page helpful?
0 / 5 - 0 ratings

Related issues

alex3683 picture alex3683  路  4Comments

outOFFspace picture outOFFspace  路  4Comments

songoo picture songoo  路  4Comments

heykkyu picture heykkyu  路  4Comments

vesper8 picture vesper8  路  3Comments