improved general settting coloring

This commit is contained in:
Dante Ruiz 2017-03-10 19:33:14 +00:00
parent 9b3810814e
commit b63ab05eec

View file

@ -21,8 +21,8 @@ import "../../../controls-uit" as HifiControls
Item { Item {
id: dialog id: dialog
width: 480 width: parent.width
height: 720 height: parent.height
HifiConstants { id: hifi } HifiConstants { id: hifi }
property var sections: [] property var sections: []
@ -31,6 +31,7 @@ Item {
property bool keyboardEnabled: false property bool keyboardEnabled: false
property bool keyboardRaised: false property bool keyboardRaised: false
property bool punctuationMode: false property bool punctuationMode: false
property var tablet; property var tablet;
@ -68,22 +69,11 @@ Item {
} }
z: 100 z: 100
gradient: Gradient { color: hifi.colors.darkGray
GradientStop {
position: 0
color: "#2b2b2b"
}
GradientStop {
position: 1
color: "#1e1e1e"
}
}
RalewayBold { RalewayBold {
text: title text: title
size: 26 size: 26
color: "#34a2c7" color: hifi.colors.white
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
anchors.left: parent.left anchors.left: parent.left
anchors.leftMargin: hifi.dimensions.contentMargin.x anchors.leftMargin: hifi.dimensions.contentMargin.x
@ -99,17 +89,8 @@ Item {
right: parent.right right: parent.right
} }
gradient: Gradient { color: hifi.colors.baseGray
GradientStop {
position: 0
color: "#2b2b2b"
}
GradientStop {
position: 1
color: "#0f212e"
}
}
Flickable { Flickable {
id: scrollView id: scrollView
width: parent.width width: parent.width
@ -203,17 +184,8 @@ Item {
left: parent.left left: parent.left
right: parent.right right: parent.right
} }
gradient: Gradient {
GradientStop { color: hifi.colors.baseGray
position: 0
color: "#2b2b2b"
}
GradientStop {
position: 1
color: "#0f212e"
}
}
Row { Row {
anchors { anchors {