Skip to content

Commit

Permalink
fix(ui5-tree, ui5-table, ui5-side-navigation): unnecessary scrollbar …
Browse files Browse the repository at this point in the history
…in RTL is removed (#3948)
  • Loading branch information
PetyaMarkovaBogdanova authored Sep 17, 2021
1 parent b2b2ccd commit 61fe0fe
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/fiori/src/themes/InvisibleTextStyles.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,9 @@
left: -1000px; /* ensure the invisible texts are never part of the viewport */
top: -1000px;
pointer-events: none;
}

[dir=rtl] .ui5-hidden-text {
left: auto;
right: -1000px;
}
5 changes: 5 additions & 0 deletions packages/main/src/themes/InvisibleTextStyles.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,9 @@
left: -1000px; /* ensure the invisible texts are never part of the viewport */
top: -1000px;
pointer-events: none;
}

[dir=rtl] .ui5-hidden-text {
left: auto;
right: -1000px;
}

0 comments on commit 61fe0fe

Please sign in to comment.