diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 0cae9ee2d..dc49f49d 100755 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -69,6 +69,9 @@ "tabSetup": { "message": "Setup" }, + "tabCalibration": { + "message": "Calibration" + }, "tabConfiguration": { "message": "Configuration" }, diff --git a/js/gui.js b/js/gui.js index 91392ac2..911d16a1 100644 --- a/js/gui.js +++ b/js/gui.js @@ -35,6 +35,7 @@ var GUI_control = function () { 'receiver', 'sensors', 'servos', + 'calibration', 'setup' ]; this.allowedTabs = this.defaultAllowedTabsWhenDisconnected; diff --git a/main.css b/main.css index e9084363..3dfe403a 100644 --- a/main.css +++ b/main.css @@ -814,6 +814,18 @@ li.active .ic_transponder { background-image: url(images/icons/cf_icon_transponder_white.svg); } +.ic_calibration { + background-image: url(images/icons/cf_icon_wizard_grey.svg); +} + +.ic_calibration:hover { + background-image: url(images/icons/cf_icon_wizard_white.svg); +} + +li.active .ic_calibration { + background-image: url(images/icons/cf_icon_wizard_white.svg); +} + /* SPARE Tab-Icons */ .ic_failsafe { @@ -1280,7 +1292,7 @@ dialog { } .default_btn a:active { - background-color: #4d9324; + background-color: #0a3a9d; transition: all ease 0.0s; box-shadow: inset 0px 1px 5px rgba(0, 0, 0, 0.35); } diff --git a/main.html b/main.html index 019b86f8..f0f88257 100755 --- a/main.html +++ b/main.html @@ -8,6 +8,7 @@ + @@ -62,6 +63,7 @@ + @@ -194,6 +196,7 @@