Fix Numeric input problems are backwards for right-to-left languages

This commit is contained in:
Awais Jibran
2019-07-22 17:30:18 +05:00
parent b9c9df00c4
commit 1dcfaef703
4 changed files with 31 additions and 6 deletions

View File

@@ -438,6 +438,11 @@
margin: ($baseline/2);
padding: ($baseline/2);
overflow: hidden;
code::before,
code::after {
@include display-left-to-right();
}
}
// STATE: container/component with children - abbreviated preview

View File

@@ -316,3 +316,9 @@
@content;
}
}
@mixin display-left-to-right {
@if $bi-app-direction == rtl {
content: "\200E";
}
}