Make progress bars more sensible looking and text easier to read on the bars

This commit is contained in:
Mikko Ahlroth 2014-02-07 13:35:12 +02:00
parent bc52f567a8
commit ba9a2ff99d

View file

@ -242,7 +242,7 @@ Page {
id: usedmem
height: Theme.fontSizeLarge
width: 0
color: Theme.secondaryColor
color: Theme.highlightColor
}
Rectangle {
@ -250,14 +250,14 @@ Page {
id: freemem
height: Theme.fontSizeLarge
width: 0
color: Theme.highlightColor
color: Theme.secondaryHighlightColor
}
Label {
anchors.left: memlabel.right
anchors.leftMargin: Theme.paddingLarge
id: memlegend
color: Theme.primaryColor
color: "black"
width: 5 * parent.width / 6 - Theme.paddingLarge * 2
horizontalAlignment: Qt.AlignCenter
@ -285,7 +285,7 @@ Page {
id: usedswap
height: Theme.fontSizeLarge
width: 0
color: Theme.secondaryColor
color: Theme.highlightColor
}
Rectangle {
@ -293,14 +293,14 @@ Page {
id: freeswap
height: Theme.fontSizeLarge
width: 0
color: Theme.highlightColor
color: Theme.secondaryHighlightColor
}
Label {
anchors.left: swaplabel.right
anchors.leftMargin: Theme.paddingLarge
id: swaplegend
color: Theme.primaryColor
color: "black"
width: 5 * parent.width / 6 - Theme.paddingLarge * 2
horizontalAlignment: Qt.AlignCenter