Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix rtl functions with all language codes #442

Merged
merged 2 commits into from
Feb 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 15 additions & 5 deletions src/js/utils/isRTL.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
export default function isRTL() {
return (
document.documentElement.dir === 'rtl' ||
document.documentElement.lang === 'ar' ||
document.documentElement.lang === 'iw'
)
const rtlLanguages = [
'ar', // Arabic
'fa', // Persian (Farsi)
'he', // Hebrew (modern code)
'iw', // Hebrew (legacy code)
'ur', // Urdu
'ps', // Pashto
'sd', // Sindhi
'ug', // Uyghur
'dv', // Divehi (Maldivian)
'ku', // Kurdish (Sorani)
'yi', // Yiddish
]

return document.documentElement.dir === 'rtl' || rtlLanguages.includes(document.documentElement.lang)
}
32 changes: 24 additions & 8 deletions src/scss/02-tools/_m-rtl.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Support for rtl text, explicit support for Arabic and Hebrew
* Support for rtl text, explicit support for all RTL languages
*
* @author Cédric Andrietti
*
Expand All @@ -13,17 +13,33 @@
*
*/

$rtl-languages: (
"ar", // Arabic
"fa", // Persian (Farsi)
"he", // Hebrew (modern code)
"iw", // Hebrew (legacy code)
"ur", // Urdu
"ps", // Pashto
"sd", // Sindhi
"ug", // Uyghur
"dv", // Divehi (Maldivian)
"ku", // Kurdish (Sorani)
"yi" // Yiddish
);

@mixin rtl {
*[dir="rtl"] &,
:root:lang(ar) &,
:root:lang(iw) & {
@content;
@each $lang in $rtl-languages {
*[dir="rtl"] &,
:root:lang(#{$lang}) & {
@content;
}
}
}

@mixin set-rtl-direction {
&:lang(ar),
&:lang(iw) {
direction: rtl;
@each $lang in $rtl-languages {
&:lang(#{$lang}) {
direction: rtl;
}
}
}
12 changes: 2 additions & 10 deletions src/scss/08-template-parts/_header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -260,11 +260,7 @@
width: column(9);

> div {
text-align: right;

@include rtl {
text-align: left;
}
text-align: end;
}
}

Expand All @@ -277,11 +273,7 @@

> li {
display: inline;
text-align: left;

@include rtl {
text-align: right;
}
text-align: start;

+ li {
margin-inline-start: 28px;
Expand Down
Loading