[keyboardq] remove background image use
make the module more in line with the look of the rest of Calamares
This commit is contained in:
parent
d114c383fa
commit
3a3507f2b2
@ -15,7 +15,7 @@ ListView {
|
|||||||
|
|
||||||
z: parent.z - 1
|
z: parent.z - 1
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
color: Kirigami.Theme.backgroundColor
|
color: "#BDC3C7"
|
||||||
radius: 5
|
radius: 5
|
||||||
opacity: 0.7
|
opacity: 0.7
|
||||||
}
|
}
|
||||||
|
@ -13,8 +13,8 @@ Page {
|
|||||||
width: 800 //parent.width
|
width: 800 //parent.width
|
||||||
height: 550 //parent.height
|
height: 550 //parent.height
|
||||||
|
|
||||||
Kirigami.Theme.backgroundColor: "#fafafa"
|
Kirigami.Theme.backgroundColor: "#FAFAFA"
|
||||||
Kirigami.Theme.textColor: "#333"
|
Kirigami.Theme.textColor: "#1F1F1F"
|
||||||
|
|
||||||
property string subtitle
|
property string subtitle
|
||||||
property string message
|
property string message
|
||||||
@ -22,39 +22,6 @@ Page {
|
|||||||
default property alias content : _content.data
|
default property alias content : _content.data
|
||||||
property alias stackView: _stackView
|
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 {
|
ColumnLayout {
|
||||||
|
|
||||||
id: _content
|
id: _content
|
||||||
@ -72,7 +39,7 @@ Page {
|
|||||||
wrapMode: Text.NoWrap
|
wrapMode: Text.NoWrap
|
||||||
elide: Text.ElideMiddle
|
elide: Text.ElideMiddle
|
||||||
text: control.title
|
text: control.title
|
||||||
color: "white"
|
color: Kirigami.Theme.textColor
|
||||||
font.bold: true
|
font.bold: true
|
||||||
font.weight: Font.Bold
|
font.weight: Font.Bold
|
||||||
font.pointSize: 24
|
font.pointSize: 24
|
||||||
@ -86,7 +53,7 @@ Page {
|
|||||||
wrapMode: Text.Wrap
|
wrapMode: Text.Wrap
|
||||||
elide: Text.ElideMiddle
|
elide: Text.ElideMiddle
|
||||||
text: control.subtitle
|
text: control.subtitle
|
||||||
color: "white"
|
color: Kirigami.Theme.textColor
|
||||||
font.weight: Font.Light
|
font.weight: Font.Light
|
||||||
font.pointSize: 12
|
font.pointSize: 12
|
||||||
}
|
}
|
||||||
@ -99,7 +66,7 @@ Page {
|
|||||||
wrapMode: Text.Wrap
|
wrapMode: Text.Wrap
|
||||||
elide: Text.ElideMiddle
|
elide: Text.ElideMiddle
|
||||||
text: control.message
|
text: control.message
|
||||||
color: "white"
|
color: Kirigami.Theme.textColor
|
||||||
font.weight: Font.Light
|
font.weight: Font.Light
|
||||||
font.pointSize: 10
|
font.pointSize: 10
|
||||||
}
|
}
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 101 KiB |
@ -182,14 +182,15 @@ ResponsiveBase {
|
|||||||
Layout.maximumWidth: 500
|
Layout.maximumWidth: 500
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.alignment: Qt.AlignCenter
|
Layout.alignment: Qt.AlignCenter
|
||||||
|
color: control.Kirigami.Theme.textColor
|
||||||
|
|
||||||
background:Rectangle {
|
background:Rectangle {
|
||||||
|
|
||||||
z: parent.z - 1
|
z: parent.z - 1
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
color: control.Kirigami.Theme.backgroundColor
|
color: "#BDC3C7"
|
||||||
radius: 5
|
radius: 5
|
||||||
opacity: 0.8
|
opacity: 0.3
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -6,6 +6,5 @@
|
|||||||
<file>ListItemDelegate.qml</file>
|
<file>ListItemDelegate.qml</file>
|
||||||
<file>ListViewTemplate.qml</file>
|
<file>ListViewTemplate.qml</file>
|
||||||
<file>ResponsiveBase.qml</file>
|
<file>ResponsiveBase.qml</file>
|
||||||
<file>keyboard.jpg</file>
|
|
||||||
</qresource>
|
</qresource>
|
||||||
</RCC>
|
</RCC>
|
||||||
|
Loading…
Reference in New Issue
Block a user