From ebc17444aebb15c7c380dbe1b04dce96488d1f4a Mon Sep 17 00:00:00 2001 From: Papoteur Date: Sat, 29 Dec 2018 11:08:49 +0100 Subject: Applications: colors of categories --- qml/mw-ui.qml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/qml/mw-ui.qml b/qml/mw-ui.qml index 27ec398..ba2eeca 100644 --- a/qml/mw-ui.qml +++ b/qml/mw-ui.qml @@ -489,7 +489,7 @@ Rectangle { width: 190 height: Qt.application.font.pixelSize + 16 anchors.horizontalCenter: parent.horizontalCenter - color: "#2397D4" + color: "#262F45" y: categoriesList.currentItem.y; } } @@ -514,12 +514,13 @@ Rectangle { delegate: Rectangle{ width: parent.width height: Qt.application.font.pixelSize + 16 - color:"#202397D4" + color:"#20FFFFFF" Label {id: catLabel; anchors.horizontalCenter: parent.horizontalCenter text: modelData.name ; padding: 7 - color: categoriesList.currentIndex === index ? "white" : "black"} + color: "white" + } MouseArea { anchors.centerIn: parent width: parent.width -- cgit v1.2.1