diff --git a/cmd/mist/assets/qml/main.qml b/cmd/mist/assets/qml/main.qml index 575c15932a..b739af07eb 100644 --- a/cmd/mist/assets/qml/main.qml +++ b/cmd/mist/assets/qml/main.qml @@ -329,7 +329,11 @@ ApplicationWindow { id: mainSplit anchors.fill: parent resizing: false - + handleDelegate: Item { + Rectangle { + anchors.fill: parent + } + } function setView(view, menu) { for(var i = 0; i < views.length; i++) { @@ -368,7 +372,6 @@ ApplicationWindow { id: menu Layout.minimumWidth: 192 Layout.maximumWidth: 192 - border.width: 10 anchors.top: parent.top Rectangle { @@ -418,15 +421,11 @@ ApplicationWindow { // New App Button id: newAppButton visible: false - anchors { - top: parent.top - left: parent.left - leftMargin: 6 - topMargin: 9 - } + anchors.fill: parent + anchors.rightMargin: 8 border.width: 0 radius: 5 - height: 37 + height: 55 width: 180 color: "#F3F1F3" } @@ -613,16 +612,22 @@ ApplicationWindow { } } - Text { - text: "ETHEREUM" - font.bold: true - anchors { - left: parent.left - leftMargin: 5 + Rectangle { + height: 55 + color: "transparent" + Text { + text: "ETHEREUM" + font.bold: true + anchors { + left: parent.left + top: parent.verticalCenter + leftMargin: 16 + } + color: "#AAA0A0" } - color: "#AAA0A0" } + ColumnLayout { id: menuDefault spacing: 3 @@ -632,15 +637,19 @@ ApplicationWindow { } } - - Text { - text: "APPS" - font.bold: true - anchors { - left: parent.left - leftMargin: 5 + Rectangle { + height: 55 + color: "transparent" + Text { + text: "APPS" + font.bold: true + anchors { + left: parent.left + top: parent.verticalCenter + leftMargin: 16 + } + color: "#AAA0A0" } - color: "#AAA0A0" } ColumnLayout { @@ -652,16 +661,22 @@ ApplicationWindow { } } - Text { - text: "DEBUG" - font.bold: true - anchors { - left: parent.left - leftMargin: 5 + Rectangle { + height: 55 + color: "transparent" + Text { + text: "DEBUG" + font.bold: true + anchors { + left: parent.left + top: parent.verticalCenter + leftMargin: 16 + } + color: "#AAA0A0" } - color: "#AAA0A0" } + ColumnLayout { id: menuLegacy spacing: 3 @@ -682,10 +697,7 @@ ApplicationWindow { anchors.left: menu.right anchors.bottom: parent.bottom anchors.top: parent.top - color: "#00000000" - border.width: 10 - border.color: "#00FF0F" - + color: "#00000000" Rectangle { id: urlPane