diff --git a/share/qtcreator/welcomescreen/welcomescreen.qml b/share/qtcreator/welcomescreen/welcomescreen.qml index 288f1e1c32eda724d5911e30c64f4fa379538476..68f9761ffc582e0aa3d7dd3e98fe6eb9a41143bb 100644 --- a/share/qtcreator/welcomescreen/welcomescreen.qml +++ b/share/qtcreator/welcomescreen/welcomescreen.qml @@ -62,22 +62,11 @@ Rectangle { border.bottom: 10 } - BorderImage { - id: deadArea - anchors.left: parent.left - anchors.top: inner_background.bottom - anchors.topMargin: -2 - width: news.width - height: navigationAndDevLinks.height - border { top: 1; bottom: 1} - source: "qrc:welcome/images/tab_inactive.png" - Rectangle { anchors.right: parent.right; height: parent.height; y:0; width: 1; color: "black"} - } LinksBar { id: navigationAndDevLinks property alias current: root.current anchors.top: inner_background.bottom - anchors.left: deadArea.right + anchors.left: news.right anchors.right: parent.right anchors.bottomMargin: 4 anchors.topMargin: -2 @@ -88,27 +77,34 @@ Rectangle { color: "#eee" id: news opacity: 0.7 - anchors.top: navigationAndDevLinks.bottom + anchors.top: navigationAndDevLinks.top anchors.bottom: feedback.top anchors.left: parent.left width: 270 FeaturedAndNewsListing { anchors.fill: parent } - Rectangle{ + Rectangle { + anchors.left: parent.left anchors.right: parent.right anchors.top: parent.top - anchors.bottom: parent.bottom - width:1 - color: "#aaa" + height: 1 + color: "black" + } + Rectangle { + anchors.left: parent.left + anchors.right: parent.right + anchors.top: parent.top + anchors.topMargin: 1 + height: 1 + color: "#ccc" } Rectangle{ anchors.right: parent.right anchors.top: parent.top anchors.bottom: parent.bottom - anchors.rightMargin: 1 width:1 - color: "white" + color: "black" } } diff --git a/share/qtcreator/welcomescreen/widgets/FeaturedAndNewsListing.qml b/share/qtcreator/welcomescreen/widgets/FeaturedAndNewsListing.qml index 1d1d3942329e79546721a5f1eee458c9442cd53c..9373d6ffb65a36014da62cad6a8785f569a55528 100644 --- a/share/qtcreator/welcomescreen/widgets/FeaturedAndNewsListing.qml +++ b/share/qtcreator/welcomescreen/widgets/FeaturedAndNewsListing.qml @@ -34,13 +34,6 @@ import QtQuick 1.0 import components 1.0 as Components Item { - Rectangle { - height: 1 - color: "#ccc" - anchors.top: parent.top - width: parent.width - } - InsetText { id: text anchors.left: parent.left