Index: sources/gui/qml/components/ConfirmButton.qml =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -r8e9ab09c145174b7912fc13f0ea906572a45ad9c --- sources/gui/qml/components/ConfirmButton.qml (.../ConfirmButton.qml) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/qml/components/ConfirmButton.qml (.../ConfirmButton.qml) (revision 8e9ab09c145174b7912fc13f0ea906572a45ad9c) @@ -23,9 +23,9 @@ width : Variables.confirmButtonWidth height : 50 text { - text: qsTr("CONFIRM") - font.bold : true + text: qsTr("Confirm") font.pixelSize: Fonts.fontPixelConfirm + font.weight : Font.Medium } isDefault: true Index: sources/gui/qml/globals/Fonts.qml =================================================================== diff -u -r477c26a4e1dcbdf7ad0f29ae7a1df4738d4dcce2 -r8e9ab09c145174b7912fc13f0ea906572a45ad9c --- sources/gui/qml/globals/Fonts.qml (.../Fonts.qml) (revision 477c26a4e1dcbdf7ad0f29ae7a1df4738d4dcce2) +++ sources/gui/qml/globals/Fonts.qml (.../Fonts.qml) (revision 8e9ab09c145174b7912fc13f0ea906572a45ad9c) @@ -56,7 +56,7 @@ readonly property int fontPixelFluidUnit : 22 readonly property int fontPixelFluidVolume : 16 - readonly property int fontPixelConfirm : 19 + readonly property int fontPixelConfirm : 21 readonly property int fontPixelBack : 17 readonly property int fontPixelSliderMarker : 17 Index: sources/gui/qml/globals/Variables.qml =================================================================== diff -u -r5f4b3aacfede4aa545a44c7f3b33ca649b81aac7 -r8e9ab09c145174b7912fc13f0ea906572a45ad9c --- sources/gui/qml/globals/Variables.qml (.../Variables.qml) (revision 5f4b3aacfede4aa545a44c7f3b33ca649b81aac7) +++ sources/gui/qml/globals/Variables.qml (.../Variables.qml) (revision 8e9ab09c145174b7912fc13f0ea906572a45ad9c) @@ -64,7 +64,7 @@ readonly property int touchRectWidth : 512 //K:D //425 readonly property int touchRectHeight : 85 //K:D //70 - readonly property int touchRectRadius : 15 + readonly property int touchRectRadius : 10 readonly property int titleBottomPadding : 25 @@ -215,7 +215,7 @@ readonly property int adjustmentDialogHeight : applicationHeight * 0.7 readonly property int adjustmentHeaderHeight : 120 readonly property int adjustmentButtonMargin : 30 - readonly property int adjustmentButtonHeight : 60 + readonly property int adjustmentButtonHeight : 55 readonly property int adjustmentButtonWidth : 200 // ---------- < PRS > Related Section ---------- Index: sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentVitals.qml =================================================================== diff -u -r785e8b1148fb690e3610557a0f6a976284e36f46 -r8e9ab09c145174b7912fc13f0ea906572a45ad9c --- sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentVitals.qml (.../TreatmentAdjustmentVitals.qml) (revision 785e8b1148fb690e3610557a0f6a976284e36f46) +++ sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentVitals.qml (.../TreatmentAdjustmentVitals.qml) (revision 8e9ab09c145174b7912fc13f0ea906572a45ad9c) @@ -78,11 +78,11 @@ } Column { id: _buttonRow - spacing: Variables.defaultMargin + spacing: Variables.defaultMargin * 1.5 anchors { bottom : _root.contentItem.bottom - bottomMargin : Variables.defaultMargin * 6 + bottomMargin : Variables.defaultMargin * 5 horizontalCenter: _root.contentItem.horizontalCenter } @@ -122,7 +122,7 @@ width : 100 horizontalAlignment : Text.AlignHCenter color : Colors.offWhite - font.pixelSize : Fonts.fontPixelValueControl + font.pixelSize : 30 } Rectangle { id: _rightLine @@ -143,9 +143,9 @@ anchors.horizontalCenter: parent.horizontalCenter text { - text : qsTr("MEASURE VITALS") - font.bold : true + text : qsTr("Measure Vitals") font.pixelSize : Fonts.fontPixelConfirm + font.weight : Font.Medium } onClicked: vTreatmentAdjustmentVitals.doRequest()