diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json
index 1539d16a62..e08f66dcf6 100644
--- a/apps/documenteditor/mobile/locale/en.json
+++ b/apps/documenteditor/mobile/locale/en.json
@@ -808,6 +808,7 @@
"textCloseHistory": "Close History",
"textEnterNewFileName": "Enter a new file name",
"textOk": "OK",
+ "btnSend": "Send",
"textRenameFile": "Rename File",
"textSwitchedMobileView": "Switched to Mobile view",
"textSwitchedStandardView": "Switched to Standard view"
diff --git a/apps/documenteditor/mobile/src/less/app-ios.less b/apps/documenteditor/mobile/src/less/app-ios.less
index e3fb478589..2419089403 100644
--- a/apps/documenteditor/mobile/src/less/app-ios.less
+++ b/apps/documenteditor/mobile/src/less/app-ios.less
@@ -97,5 +97,9 @@
bottom: 50px;
}
}
+
+ #btn-save-form {
+ background-color: @brand-form;
+ }
}
diff --git a/apps/documenteditor/mobile/src/less/app.less b/apps/documenteditor/mobile/src/less/app.less
index d8355aae26..43f2dccc1f 100644
--- a/apps/documenteditor/mobile/src/less/app.less
+++ b/apps/documenteditor/mobile/src/less/app.less
@@ -381,5 +381,13 @@
opacity: 0;
transition: opacity 300ms;
}
-
+//
+#btn-save-form {
+ background-color: @toolbar-icons;
+ color: @toolbar-background;
+ height: 2em;
+ border-radius: 1em;
+ padding-left: 15px;
+ padding-right: 15px;
+}
diff --git a/apps/documenteditor/mobile/src/view/Toolbar.jsx b/apps/documenteditor/mobile/src/view/Toolbar.jsx
index 28097950b6..e32c1059f7 100644
--- a/apps/documenteditor/mobile/src/view/Toolbar.jsx
+++ b/apps/documenteditor/mobile/src/view/Toolbar.jsx
@@ -86,13 +86,15 @@ const ToolbarView = props => {
: null),
(isVersionHistoryMode ?
props.openOptions('history')}>
- : null)
+ : null),
+ props.openOptions('settings')}>
] : [
props.movePrevField()}>,
props.moveNextField()}>,
- props.saveForm()}>,
+ props.openOptions('settings')}>,
+ props.saveForm()}>,
]}
- props.openOptions('settings')}>
)