Skip to content

Commit

Permalink
[DE PE SSE] Fix bug 66228
Browse files Browse the repository at this point in the history
  • Loading branch information
JuliaSvinareva committed Feb 6, 2024
1 parent 1f32973 commit 3b2def5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
4 changes: 2 additions & 2 deletions apps/common/main/resources/less/chat.less
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@
.ps-scrollbar-y-rail {
margin-top: 5px;
margin-bottom: 5px;
right: 4px !important;
right: 4px;

.rtl & {
right: unset !important;
left: 4px !important;
left: 4px;
}
}

Expand Down
4 changes: 2 additions & 2 deletions apps/common/main/resources/less/comments.less
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@
.ps-scrollbar-y-rail {
margin-top: 5px;
margin-bottom: 5px;
right: 4px !important;
right: 4px;

.rtl & {
right: unset !important;
left: 4px !important;
left: 4px;
}
}

Expand Down
13 changes: 8 additions & 5 deletions apps/common/main/resources/less/common.less
Original file line number Diff line number Diff line change
Expand Up @@ -380,11 +380,14 @@ body {
font-family: @font-family-base;
}

.rtl .ps-scrollbar-y-rail {
right: unset !important;
left: 1px !important;
.ps-scrollbar-y {
left: 0 !important;
.rtl .ps-container.oo {
.ps-scrollbar-y-rail {
right: unset !important;
left: 1px;

.ps-scrollbar-y {
left: 0;
}
}
}

Expand Down

0 comments on commit 3b2def5

Please sign in to comment.