diff --git a/data/qml/tomahawkimports/InputField.qml b/data/qml/tomahawkimports/InputField.qml index c15d03077..29159ad23 100644 --- a/data/qml/tomahawkimports/InputField.qml +++ b/data/qml/tomahawkimports/InputField.qml @@ -85,12 +85,10 @@ Rectangle { } - BorderImage { - source: "../../images/inputfield-border.svg" + Image { +// source: "../../images/inputfield-border.svg" anchors.fill: parent anchors.margins: root.radius * 0.1 clip: true - border.left: defaultFontHeight/4; border.top: defaultFontHeight/4 - border.right: defaultFontHeight/4; border.bottom: defaultFontHeight/4 } } diff --git a/data/qml/tomahawkimports/PushButton.qml b/data/qml/tomahawkimports/PushButton.qml index b2c4b2503..25dc86400 100644 --- a/data/qml/tomahawkimports/PushButton.qml +++ b/data/qml/tomahawkimports/PushButton.qml @@ -6,13 +6,14 @@ Rectangle { height: buttonText.height * 1.4 width: buttonText.width + (spacing * 2) radius: defaultFontHeight * 0.25 - border.width: defaultFontHeight * 0.05 - border.color: "#a7a7a7" +// border.width: defaultFontHeight * 0.05 +// border.color: "#a7a7a7" - gradient: Gradient { + color: "white" +/* gradient: Gradient { GradientStop { position: 0.0; color: mouseArea.pressed ? "#040404" : "#fbfbfb" } GradientStop { position: 1.0; color: mouseArea.pressed ? "#8e8f8e" : "#787878" } - } + }*/ property int spacing: defaultFontHeight * 0.5 property alias text: buttonText.text @@ -23,7 +24,7 @@ Rectangle { id: buttonText anchors.centerIn: root font.pointSize: defaultFontSize - color: mouseArea.pressed ? "white" : "black" + color: mouseArea.pressed ? "grey" : "black" } MouseArea {