diff --git a/src/modules/keyboardq/ListViewTemplate.qml b/src/modules/keyboardq/ListViewTemplate.qml
index eb160afab..4564b887b 100644
--- a/src/modules/keyboardq/ListViewTemplate.qml
+++ b/src/modules/keyboardq/ListViewTemplate.qml
@@ -15,7 +15,7 @@ ListView {
z: parent.z - 1
anchors.fill: parent
- color: Kirigami.Theme.backgroundColor
+ color: "#BDC3C7"
radius: 5
opacity: 0.7
}
diff --git a/src/modules/keyboardq/ResponsiveBase.qml b/src/modules/keyboardq/ResponsiveBase.qml
index c9f5c7091..38fa15d1b 100644
--- a/src/modules/keyboardq/ResponsiveBase.qml
+++ b/src/modules/keyboardq/ResponsiveBase.qml
@@ -13,8 +13,8 @@ Page {
width: 800 //parent.width
height: 550 //parent.height
- Kirigami.Theme.backgroundColor: "#fafafa"
- Kirigami.Theme.textColor: "#333"
+ Kirigami.Theme.backgroundColor: "#FAFAFA"
+ Kirigami.Theme.textColor: "#1F1F1F"
property string subtitle
property string message
@@ -22,39 +22,6 @@ Page {
default property alias content : _content.data
property alias stackView: _stackView
- background: Item {
-
- id: _background
-
- Image {
-
- id: _wallpaper
- height: parent.height
- width: parent.width
-
- sourceSize.width: 800
- sourceSize.height: 550
-
- fillMode: Image.PreserveAspectCrop
- antialiasing: false
- smooth: false
- asynchronous: true
- cache: true
-
- source: "keyboard.jpg"
- }
-
- FastBlur {
-
- id: fastBlur
- anchors.fill: parent
- source: _wallpaper
- radius: 32
- transparentBorder: false
- cached: true
- }
- }
-
ColumnLayout {
id: _content
@@ -63,7 +30,7 @@ Page {
spacing: Kirigami.Units.smallSpacing * 5
anchors.margins: Kirigami.Units.smallSpacing * 5
anchors.bottomMargin: 20
-
+
Label {
Layout.fillWidth: true
@@ -72,7 +39,7 @@ Page {
wrapMode: Text.NoWrap
elide: Text.ElideMiddle
text: control.title
- color: "white"
+ color: Kirigami.Theme.textColor
font.bold: true
font.weight: Font.Bold
font.pointSize: 24
@@ -86,7 +53,7 @@ Page {
wrapMode: Text.Wrap
elide: Text.ElideMiddle
text: control.subtitle
- color: "white"
+ color: Kirigami.Theme.textColor
font.weight: Font.Light
font.pointSize: 12
}
@@ -99,7 +66,7 @@ Page {
wrapMode: Text.Wrap
elide: Text.ElideMiddle
text: control.message
- color: "white"
+ color: Kirigami.Theme.textColor
font.weight: Font.Light
font.pointSize: 10
}
@@ -110,7 +77,7 @@ Page {
Layout.fillHeight: true
Layout.preferredWidth: parent.width
clip: true
- }
+ }
}
}
diff --git a/src/modules/keyboardq/keyboard.jpg b/src/modules/keyboardq/keyboard.jpg
deleted file mode 100644
index 9c0600fac..000000000
Binary files a/src/modules/keyboardq/keyboard.jpg and /dev/null differ
diff --git a/src/modules/keyboardq/keyboardq.qml b/src/modules/keyboardq/keyboardq.qml
index 7474fbdd1..613223a1c 100644
--- a/src/modules/keyboardq/keyboardq.qml
+++ b/src/modules/keyboardq/keyboardq.qml
@@ -182,14 +182,15 @@ ResponsiveBase {
Layout.maximumWidth: 500
Layout.fillWidth: true
Layout.alignment: Qt.AlignCenter
+ color: control.Kirigami.Theme.textColor
background:Rectangle {
z: parent.z - 1
anchors.fill: parent
- color: control.Kirigami.Theme.backgroundColor
+ color: "#BDC3C7"
radius: 5
- opacity: 0.8
+ opacity: 0.3
}
}
}
diff --git a/src/modules/keyboardq/keyboardq.qrc b/src/modules/keyboardq/keyboardq.qrc
index 69fdb715f..b2ee36ee5 100644
--- a/src/modules/keyboardq/keyboardq.qrc
+++ b/src/modules/keyboardq/keyboardq.qrc
@@ -6,6 +6,5 @@
ListItemDelegate.qml
ListViewTemplate.qml
ResponsiveBase.qml
- keyboard.jpg