summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntony Baker <jasperodus@zoho.com>2018-12-20 17:09:10 +0000
committerPapoteur <papoteur@mageia.org>2018-12-23 11:01:35 +0100
commit2bc57bf0432211762f2bbd2200b9b967e1c27cfc (patch)
tree18a00ac9094db4b26132784d979c791c8ec05964
parent35c3bb42c7ad63ad5102d4a17f9c91d08f151c23 (diff)
downloadmageiawelcome-2bc57bf0432211762f2bbd2200b9b967e1c27cfc.tar
mageiawelcome-2bc57bf0432211762f2bbd2200b9b967e1c27cfc.tar.gz
mageiawelcome-2bc57bf0432211762f2bbd2200b9b967e1c27cfc.tar.bz2
mageiawelcome-2bc57bf0432211762f2bbd2200b9b967e1c27cfc.tar.xz
mageiawelcome-2bc57bf0432211762f2bbd2200b9b967e1c27cfc.zip
General: 1. Add gradient to light-grey @logo. 2. Reduce MW overall height slightly.
-rw-r--r--qml/mw-ui.qml12
1 files changed, 10 insertions, 2 deletions
diff --git a/qml/mw-ui.qml b/qml/mw-ui.qml
index 6133b7c..0b7b68d 100644
--- a/qml/mw-ui.qml
+++ b/qml/mw-ui.qml
@@ -8,12 +8,20 @@ import QtGraphicalEffects 1
Rectangle {
id: box
- width: 1000; height: 700
+ width: 1000; height: 650
property alias view: view
Rectangle {
id: banner
- color: "lightgray"
width: parent.width;height: 120
+ LinearGradient {
+ anchors.fill: parent
+ start: Qt.point(0, 0)
+ end: Qt.point(0, 300)
+ gradient: Gradient {
+ GradientStop { position: 0.0; color: "lightgray" }
+ GradientStop { position: 1.0; color: "white" }
+ }
+ }
Image {
anchors.fill: parent