diff --git a/apps/common/mobile/resources/less/icons.less b/apps/common/mobile/resources/less/icons.less
index 076f36865..b2c1097c2 100644
--- a/apps/common/mobile/resources/less/icons.less
+++ b/apps/common/mobile/resources/less/icons.less
@@ -43,4 +43,34 @@ i.icon {
height: 22px;
.encoded-svg-background('');
}
+
+ // Numbers
+
+ &.icon-numbers-1 {
+ .encoded-svg-background('');
+ }
+
+ &.icon-numbers-2 {
+ .encoded-svg-background('');
+ }
+
+ &.icon-numbers-3 {
+ .encoded-svg-background('');
+ }
+
+ &.icon-numbers-4 {
+ .encoded-svg-background('');
+ }
+
+ &.icon-numbers-5 {
+ .encoded-svg-background('');
+ }
+
+ &.icon-numbers-6 {
+ .encoded-svg-background('');
+ }
+
+ &.icon-numbers-7 {
+ .encoded-svg-background('');
+ }
}
diff --git a/apps/common/mobile/resources/less/icons.rtl.less b/apps/common/mobile/resources/less/icons.rtl.less
index eb6320102..8407cf0b2 100644
--- a/apps/common/mobile/resources/less/icons.rtl.less
+++ b/apps/common/mobile/resources/less/icons.rtl.less
@@ -3,9 +3,29 @@
i.icon {
&.icon-next, &.icon-prev, &.icon-text-align-right, &.icon-text-align-left,
&.icon-table-add-column-left, &.icon-table-add-column-right, &.icon-table-remove-column,
- &.icon-table-borders-left, &.icon-table-borders-right {
+ &.icon-table-borders-left, &.icon-table-borders-right, &.icon-numbers-3, &.icon-numbers-7 {
transform: scaleX(-1);
}
+
+ &.icon-numbers-1 {
+ .encoded-svg-background('');
+ }
+
+ &.icon-numbers-2 {
+ .encoded-svg-background('');
+ }
+
+ &.icon-numbers-4 {
+ .encoded-svg-background('');
+ }
+
+ &.icon-numbers-5 {
+ .encoded-svg-background('');
+ }
+
+ &.icon-numbers-6 {
+ .encoded-svg-background('');
+ }
}
// [PE] rtl-icons
@@ -14,4 +34,20 @@
transform: scaleX(-1);
}
}
+
+ // [SSE] rtl-icons
+
+ i.icon {
+ &.icon-text-orientation-horizontal {
+ .encoded-svg-mask('');
+ }
+
+ &.icon-text-orientation-anglecount {
+ .encoded-svg-mask('');
+ }
+
+ &.icon-text-orientation-angleclock {
+ .encoded-svg-mask('');
+ }
+ }
}
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/src/view/edit/EditText.jsx b/apps/documenteditor/mobile/src/view/edit/EditText.jsx
index 7a0fe89eb..3e66e06a7 100644
--- a/apps/documenteditor/mobile/src/view/edit/EditText.jsx
+++ b/apps/documenteditor/mobile/src/view/edit/EditText.jsx
@@ -259,7 +259,7 @@ const PageNumbers = observer( props => {
:
-
+
}
))}
diff --git a/apps/presentationeditor/mobile/src/view/edit/EditText.jsx b/apps/presentationeditor/mobile/src/view/edit/EditText.jsx
index 8fae5157f..f815e812e 100644
--- a/apps/presentationeditor/mobile/src/view/edit/EditText.jsx
+++ b/apps/presentationeditor/mobile/src/view/edit/EditText.jsx
@@ -585,7 +585,7 @@ const PageNumbers = observer(props => {
:
-
+
}
))}
diff --git a/apps/spreadsheeteditor/mobile/src/less/icons-common.less b/apps/spreadsheeteditor/mobile/src/less/icons-common.less
index 392f464ef..b81569a9e 100644
--- a/apps/spreadsheeteditor/mobile/src/less/icons-common.less
+++ b/apps/spreadsheeteditor/mobile/src/less/icons-common.less
@@ -78,9 +78,9 @@
}
}
-// Formats
-
i.icon {
+ // Formats
+
&.icon-format-xlsx {
width: 22px;
height: 22px;
@@ -106,4 +106,37 @@ i.icon {
height: 22px;
.encoded-svg-background('');
}
+
+ // Text orientation
+
+ &.icon-text-orientation-horizontal {
+ width: 24px;
+ height: 24px;
+ .encoded-svg-mask('');
+ }
+ &.icon-text-orientation-anglecount {
+ width: 24px;
+ height: 24px;
+ .encoded-svg-mask('');
+ }
+ &.icon-text-orientation-angleclock {
+ width: 24px;
+ height: 24px;
+ .encoded-svg-mask('');
+ }
+ &.icon-text-orientation-vertical {
+ width: 24px;
+ height: 24px;
+ .encoded-svg-mask('');
+ }
+ &.icon-text-orientation-rotateup {
+ width: 24px;
+ height: 24px;
+ .encoded-svg-mask('');
+ }
+ &.icon-text-orientation-rotatedown {
+ width: 24px;
+ height: 24px;
+ .encoded-svg-mask('');
+ }
}
diff --git a/apps/spreadsheeteditor/mobile/src/less/icons-ios.less b/apps/spreadsheeteditor/mobile/src/less/icons-ios.less
index 16071201f..74136b59b 100644
--- a/apps/spreadsheeteditor/mobile/src/less/icons-ios.less
+++ b/apps/spreadsheeteditor/mobile/src/less/icons-ios.less
@@ -376,37 +376,6 @@
height: 24px;
.encoded-svg-mask('');
}
- // Text orientation
- &.icon-text-orientation-horizontal {
- width: 24px;
- height: 24px;
- .encoded-svg-mask('');
- }
- &.icon-text-orientation-anglecount {
- width: 24px;
- height: 24px;
- .encoded-svg-mask('');
- }
- &.icon-text-orientation-angleclock {
- width: 24px;
- height: 24px;
- .encoded-svg-mask('');
- }
- &.icon-text-orientation-vertical {
- width: 24px;
- height: 24px;
- .encoded-svg-mask('');
- }
- &.icon-text-orientation-rotateup {
- width: 24px;
- height: 24px;
- .encoded-svg-mask('');
- }
- &.icon-text-orientation-rotatedown {
- width: 24px;
- height: 24px;
- .encoded-svg-mask('');
- }
}
.tab-link-active {
diff --git a/apps/spreadsheeteditor/mobile/src/less/icons-material.less b/apps/spreadsheeteditor/mobile/src/less/icons-material.less
index 39773e019..d69f5fd41 100644
--- a/apps/spreadsheeteditor/mobile/src/less/icons-material.less
+++ b/apps/spreadsheeteditor/mobile/src/less/icons-material.less
@@ -329,37 +329,6 @@
height: 24px;
.encoded-svg-background('');
}
- // Text orientation
- &.icon-text-orientation-horizontal {
- width: 24px;
- height: 24px;
- .encoded-svg-mask('');
- }
- &.icon-text-orientation-anglecount {
- width: 24px;
- height: 24px;
- .encoded-svg-mask('');
- }
- &.icon-text-orientation-angleclock {
- width: 24px;
- height: 24px;
- .encoded-svg-mask('');
- }
- &.icon-text-orientation-vertical {
- width: 24px;
- height: 24px;
- .encoded-svg-mask('');
- }
- &.icon-text-orientation-rotateup {
- width: 24px;
- height: 24px;
- .encoded-svg-mask('');
- }
- &.icon-text-orientation-rotatedown {
- width: 24px;
- height: 24px;
- .encoded-svg-mask('');
- }
&.icon-plus {
width: 22px;
height: 22px;