summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntony Baker <jasperodus@zoho.com>2018-12-23 14:28:18 +0000
committerPapoteur <papoteur@mageia.org>2018-12-25 10:19:15 +0100
commita3be597adaf79b1b5509acac0a6fc2935fe90a12 (patch)
tree7cbea6eb316230c60fa6e1959a877b7215463180
parent7539ca69a67e6152a3be372b76aeb26d04fe3650 (diff)
downloadmageiawelcome-a3be597adaf79b1b5509acac0a6fc2935fe90a12.tar
mageiawelcome-a3be597adaf79b1b5509acac0a6fc2935fe90a12.tar.gz
mageiawelcome-a3be597adaf79b1b5509acac0a6fc2935fe90a12.tar.bz2
mageiawelcome-a3be597adaf79b1b5509acac0a6fc2935fe90a12.tar.xz
mageiawelcome-a3be597adaf79b1b5509acac0a6fc2935fe90a12.zip
Applications: Yellow border - Reduce height of border and text. Centre text. Slight rearrangement of text.
-rw-r--r--qml/mw-ui.qml15
1 files changed, 9 insertions, 6 deletions
diff --git a/qml/mw-ui.qml b/qml/mw-ui.qml
index b6dea71..57317aa 100644
--- a/qml/mw-ui.qml
+++ b/qml/mw-ui.qml
@@ -12,11 +12,13 @@ Rectangle {
property alias view: view
Rectangle {
id: banner
+ opacity: 0.95
+ layer.enabled: true
width: parent.width;height: 120
LinearGradient {
anchors.fill: parent
start: Qt.point(0, 0)
- end: Qt.point(0, 300)
+ end: Qt.point(0, 400)
gradient: Gradient {
GradientStop { position: 0.0; color: "lightgray" }
GradientStop { position: 1.0; color: "white" }
@@ -463,12 +465,13 @@ Rectangle {
// Bandeau avertissement
id: warning
width: view.width
- height: 60
+ height: 45
color: "gold"
- Label {anchors {verticalCenter: parent.verticalCenter; }
- leftPadding: 15
- text: qsTr("Here is a small selection of popular applications - any of which may be installed at this point.")+"<BR />"+
- "You can install an application or launch it if already installed. Ensure that you have enabled the <i>Media sources</i>."
+ Label {anchors {verticalCenter: parent.verticalCenter; horizontalCenter: parent.horizontalCenter}
+ horizontalAlignment: TextInput.AlignHCenter
+ font.pixelSize: Qt.application.font.pixelSize * .9
+ text: qsTr("Here is a small selection of popular applications - any of which may be installed at this point (ensure that you enabled the <i>Media sources</i>).")+"<BR />"+
+ "You can install an application, or launch it if already installed. Longer software lists are scrollable."
textFormat: Text.RichText
}
}