Revert "sidebar text improvements"

This reverts commit 87d721e85f.
This commit is contained in:
Alexandre Van de Sande 2015-02-05 18:46:20 -02:00
parent 1345ec570c
commit 40dbd6ada2

View file

@ -329,11 +329,7 @@ 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++) {
@ -372,6 +368,7 @@ 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 {
@ -421,11 +418,15 @@ ApplicationWindow {
// New App Button // New App Button
id: newAppButton id: newAppButton
visible: false visible: false
anchors.fill: parent anchors {
anchors.rightMargin: 8 top: parent.top
left: parent.left
leftMargin: 6
topMargin: 9
}
border.width: 0 border.width: 0
radius: 5 radius: 5
height: 55 height: 37
width: 180 width: 180
color: "#F3F1F3" color: "#F3F1F3"
} }
@ -612,21 +613,15 @@ 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
top: parent.verticalCenter leftMargin: 5
leftMargin: 16
} }
color: "#AAA0A0" color: "#AAA0A0"
} }
}
ColumnLayout { ColumnLayout {
id: menuDefault id: menuDefault
@ -637,20 +632,16 @@ 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
top: parent.verticalCenter leftMargin: 5
leftMargin: 16
} }
color: "#AAA0A0" color: "#AAA0A0"
} }
}
ColumnLayout { ColumnLayout {
id: menuApps id: menuApps
@ -661,21 +652,15 @@ 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
top: parent.verticalCenter leftMargin: 5
leftMargin: 16
} }
color: "#AAA0A0" color: "#AAA0A0"
} }
}
ColumnLayout { ColumnLayout {
id: menuLegacy id: menuLegacy
@ -698,6 +683,9 @@ 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