Nodejs.org: Translation to arabic: RTL style issue

Created on 31 Dec 2018  路  3Comments  路  Source: nodejs/nodejs.org

I have an issue with the website when translating to a language written from RTL
and i tried a workaround that worked perfectly, but it adds so many lines of code to the styling file ... is it ok to use this as a final solution ?

@nodejs/nodejs-ar , @celyes , @InterstellarClub

Most helpful comment

Nooo, please don't do this. 馃榿
We already have the RTL flag, so html[dir="rtl"] is sufficient.
See: https://nodejs.org/ar/

Please also don't simply duplicate all the CSS, when you just want to change three lines of code.

What you want is:

html
  // all the regular styles
  ...

html[dir="rtl"]
    .has-side-nav
      aside
        float right

      article
        margin-right 220px

    @media screen and (max-width: 480px)
      .has-side-nav
        article
          margin-right 0px

All 3 comments

Nooo, please don't do this. 馃榿
We already have the RTL flag, so html[dir="rtl"] is sufficient.
See: https://nodejs.org/ar/

Please also don't simply duplicate all the CSS, when you just want to change three lines of code.

What you want is:

html
  // all the regular styles
  ...

html[dir="rtl"]
    .has-side-nav
      aside
        float right

      article
        margin-right 220px

    @media screen and (max-width: 480px)
      .has-side-nav
        article
          margin-right 0px

Thank you so much, @fhemberger .
your code works just perfectly.
note that i added this line to the article element:

margin-left: 0;

so the margin left is set to 0 when the website language is a written from RTL , so the final code to add is like this:

html[dir="rtl"]
    .has-side-nav
      aside
        float right

      article
        margin-right 220px
        margin-left 0

    @media screen and (max-width: 480px)
      .has-side-nav
        article
          margin-right 0px

thank you @fhemberger

Was this page helpful?
0 / 5 - 0 ratings

Related issues

williamkapke picture williamkapke  路  6Comments

ghost picture ghost  路  4Comments

fhemberger picture fhemberger  路  8Comments

jitendra3109 picture jitendra3109  路  6Comments

celyes picture celyes  路  5Comments