From a3be597adaf79b1b5509acac0a6fc2935fe90a12 Mon Sep 17 00:00:00 2001 From: Antony Baker Date: Sun, 23 Dec 2018 14:28:18 +0000 Subject: Applications: Yellow border - Reduce height of border and text. Centre text. Slight rearrangement of text. --- qml/mw-ui.qml | 15 +++++++++------ 1 file 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.")+"
"+ - "You can install an application or launch it if already installed. Ensure that you have enabled the Media sources." + 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 Media sources).")+"
"+ + "You can install an application, or launch it if already installed. Longer software lists are scrollable." textFormat: Text.RichText } } -- cgit v1.2.1