Skip to content

Commit

Permalink
Fix Bug 66542
Browse files Browse the repository at this point in the history
  • Loading branch information
JuliaRadzhabova committed Feb 16, 2024
1 parent fafb0d0 commit 79bc43c
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 1 deletion.
4 changes: 4 additions & 0 deletions apps/common/main/resources/less/common.less
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,10 @@ textarea {
color: @text-tertiary-ie;
}
.placeholder();

.rtl & {
direction: rtl;
}
}

//.btn-edit-table,
Expand Down
7 changes: 6 additions & 1 deletion apps/common/main/resources/less/header.less
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,9 @@
border-radius: 1px;
cursor: text;
}
.rtl & {
direction: rtl;
}
}

#rib-save-status {
Expand Down Expand Up @@ -577,7 +580,9 @@
border-radius: 1px;
cursor: text;
}

.rtl & {
direction: rtl;
}
}

.lr-separator {
Expand Down
6 changes: 6 additions & 0 deletions apps/common/main/resources/less/input.less
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@
position: relative;
}

input {
.rtl & {
direction: rtl;
}
}

&.form-control:focus,
.form-control:focus {
//border-color: @border-control-focus;
Expand Down
3 changes: 3 additions & 0 deletions apps/common/main/resources/less/searchdialog.less
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,9 @@
input[type=text] {
width: 192px;
.padding-x(3px, 25px);
.rtl & {
direction: rtl;
}
}
#search-bar-results {
position: absolute;
Expand Down
4 changes: 4 additions & 0 deletions apps/common/main/resources/less/spinner.less
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
height: @spin-height;
.text-align-right();
.padding-x(1px, @trigger-width + 2px);

.rtl & {
direction: rtl;
}
}

button {
Expand Down
1 change: 1 addition & 0 deletions apps/spreadsheeteditor/main/resources/less/celleditor.less
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
border: 0 none;
border-left: @scaled-one-px-value-ie solid @border-toolbar-ie;
border-left: @scaled-one-px-value solid @border-toolbar;
direction: rtl;
}

&[disabled] {
Expand Down

0 comments on commit 79bc43c

Please sign in to comment.