Index: sources/gui/qml/compounds/InstructionView.qml =================================================================== diff -u -r0f13b03278a566e8352bc26d3f181396a2490b20 -r1286d74bd015276aab604808be2766136091c125 --- sources/gui/qml/compounds/InstructionView.qml (.../InstructionView.qml) (revision 0f13b03278a566e8352bc26d3f181396a2490b20) +++ sources/gui/qml/compounds/InstructionView.qml (.../InstructionView.qml) (revision 1286d74bd015276aab604808be2766136091c125) @@ -52,9 +52,42 @@ bottom : _root.bottom } + HelpNotification { id: _infoItem + anchors { + left : parent.left + top : parent.top + topMargin : Variables.defaultMargin + } + } + +// Item { id: _infoItem +// anchors { +// left : parent.left +// top : parent.top +// topMargin : Variables.defaultMargin +// } +// height : 35 +// width : parent.width / 2 + +// NotificationBarSmall { id: _infoNotificationBar +// color : "transparent" +// imageSource : "qrc:/images/iHelp" +// imageVisible : true +// text : qsTr("TAP THE STEP NUMBER TO VIEW IMAGE") +// textColor : "#3682ED" +// imageDiameter : 25 +// imageTopMargin : 3 +// textfontWeight : Font.DemiBold +// height : _infoItem.height +// rowAnchors { +// centerIn: undefined +// left : parent.left +// } +// } +// } + Column { id: _contentColumn - anchors.top : parent.top - anchors.topMargin : Variables.defaultMargin * 2 + anchors.top : _infoItem.bottom spacing : 5 width : parent.width / 2 @@ -72,12 +105,16 @@ height : 50 width : height radius : height - color : Colors.backgroundMainMenu + color : index === _root.currentIndex ? Colors.backgroundMainMenu : Colors.offWhite + border { + color: Colors.backgroundMainMenu + width: 2 + } Text { id: _stepNumberRect anchors.centerIn: parent text : index + 1 - color : Colors.white + color : index === _root.currentIndex ? Colors.offWhite : Colors.backgroundMainMenu font.pixelSize : 28 font.weight : Font.Medium }