• Resolved amirhossein7

    (@amirhossein7)


    Please make the plugin compatible with right-to-left languages.

    In backends where the language is from right to left (Arabic, Farsi, Urdu, etc.), the environment, buttons, and placement of elements are not displayed correctly.

Viewing 1 replies (of 1 total)
  • Thread Starter amirhossein7

    (@amirhossein7)

    Almost all the problems of displaying elements in right-to-left languages are solved by these few pieces of CSS code.

    #fluent_snippets_app {
        direction: ltr;
    }
    .ff_app_body {
        margin-left: 20px;
    }
    .fsnip_app .fsnip_main-menu-items {
        margin-left: 0;
        margin-right: -20px;
    }
    .el-notification.right {
        flex-direction: row-reverse!important;
        right: 170px!important;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘RTL support’ is closed to new replies.