Index: sources/gui/qml/compounds/InstructionView.qml =================================================================== diff -u -rd00eeb4a8b354eade40a0853c022eb03ea4ae233 -r78aa5e70b591b3544ff9d9e6b772fe07deaa2f0f --- sources/gui/qml/compounds/InstructionView.qml (.../InstructionView.qml) (revision d00eeb4a8b354eade40a0853c022eb03ea4ae233) +++ sources/gui/qml/compounds/InstructionView.qml (.../InstructionView.qml) (revision 78aa5e70b591b3544ff9d9e6b772fe07deaa2f0f) @@ -89,16 +89,16 @@ height : 50 width : height radius : height - color : index === _root.currentIndex ? Colors.borderButton : Colors.modeBackgroundColor + color : index === _root.currentIndex ? Colors.modeButtonColor : Colors.modeBackgroundColor border { - color: Colors.borderButton + color: Colors.modeButtonColor width: 2 } Text { id: _stepNumberRect anchors.centerIn: parent text : index + 1 - color : Colors.darkMode ? Colors.offWhite : index === _root.currentIndex ? Colors.modeBackgroundColor : Colors.borderButton + color : Colors.darkMode ? Colors.offWhite : index === _root.currentIndex ? Colors.modeBackgroundColor : Colors.modeButtonColor font.pixelSize : 28 font.weight : Font.Medium }