sidebar text improvements

This commit is contained in:
Alexandre Van de Sande 2015-02-05 17:46:41 -02:00
parent 1032d133fb
commit 87d721e85f

View file

@ -329,7 +329,11 @@ ApplicationWindow {
id: mainSplit id: mainSplit
anchors.fill: parent anchors.fill: parent
resizing: false resizing: false
handleDelegate: Item {
Rectangle {
anchors.fill: parent
}
}
function setView(view, menu) { function setView(view, menu) {
for(var i = 0; i < views.length; i++) { for(var i = 0; i < views.length; i++) {
@ -368,7 +372,6 @@ ApplicationWindow {
id: menu id: menu
Layout.minimumWidth: 192 Layout.minimumWidth: 192
Layout.maximumWidth: 192 Layout.maximumWidth: 192
border.width: 10
anchors.top: parent.top anchors.top: parent.top
Rectangle { Rectangle {
@ -418,15 +421,11 @@ ApplicationWindow {
// New App Button // New App Button
id: newAppButton id: newAppButton
visible: false visible: false
anchors { anchors.fill: parent
top: parent.top anchors.rightMargin: 8
left: parent.left
leftMargin: 6
topMargin: 9
}
border.width: 0 border.width: 0
radius: 5 radius: 5
height: 37 height: 55
width: 180 width: 180
color: "#F3F1F3" color: "#F3F1F3"
} }
@ -613,15 +612,21 @@ ApplicationWindow {
} }
} }
Rectangle {
height: 55
color: "transparent"
Text { Text {
text: "ETHEREUM" text: "ETHEREUM"
font.bold: true font.bold: true
anchors { anchors {
left: parent.left left: parent.left
leftMargin: 5 top: parent.verticalCenter
leftMargin: 16
} }
color: "#AAA0A0" color: "#AAA0A0"
} }
}
ColumnLayout { ColumnLayout {
id: menuDefault id: menuDefault
@ -632,16 +637,20 @@ ApplicationWindow {
} }
} }
Rectangle {
height: 55
color: "transparent"
Text { Text {
text: "APPS" text: "APPS"
font.bold: true font.bold: true
anchors { anchors {
left: parent.left left: parent.left
leftMargin: 5 top: parent.verticalCenter
leftMargin: 16
} }
color: "#AAA0A0" color: "#AAA0A0"
} }
}
ColumnLayout { ColumnLayout {
id: menuApps id: menuApps
@ -652,15 +661,21 @@ ApplicationWindow {
} }
} }
Rectangle {
height: 55
color: "transparent"
Text { Text {
text: "DEBUG" text: "DEBUG"
font.bold: true font.bold: true
anchors { anchors {
left: parent.left left: parent.left
leftMargin: 5 top: parent.verticalCenter
leftMargin: 16
} }
color: "#AAA0A0" color: "#AAA0A0"
} }
}
ColumnLayout { ColumnLayout {
id: menuLegacy id: menuLegacy
@ -683,9 +698,6 @@ ApplicationWindow {
anchors.bottom: parent.bottom anchors.bottom: parent.bottom
anchors.top: parent.top anchors.top: parent.top
color: "#00000000" color: "#00000000"
border.width: 10
border.color: "#00FF0F"
Rectangle { Rectangle {
id: urlPane id: urlPane