enable bold font and matching font and icon color for action bar
This commit is contained in:
6
Main.qml
6
Main.qml
@@ -223,6 +223,7 @@ Rectangle {
|
||||
text : Qt.formatTime(clock.dateTime, config.timeFormat || "hh:mm")
|
||||
font.pointSize: config.clockFontSize
|
||||
font.family: textFont.name
|
||||
font.bold: true
|
||||
}
|
||||
|
||||
Text {
|
||||
@@ -232,6 +233,7 @@ Rectangle {
|
||||
text : Qt.formatDate(clock.dateTime, config.dateFormat || "dddd, dd MMMM yyyy")
|
||||
font.family: textFont.name
|
||||
font.pointSize: config.dateFontSize
|
||||
font.bold: true
|
||||
}
|
||||
}
|
||||
|
||||
@@ -263,6 +265,7 @@ Rectangle {
|
||||
font.family: textFont.name
|
||||
font.bold: true
|
||||
font.pixelSize: config.labelFontSize
|
||||
font.bold: true
|
||||
color: config.labelFontColor
|
||||
text: "Username"
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
@@ -403,6 +406,7 @@ Rectangle {
|
||||
height: parent.height
|
||||
font.family: textFont.name
|
||||
font.pixelSize: config.errorMsgFontSize
|
||||
font.bold: true
|
||||
//color: "white"
|
||||
anchors.top: password_input_box.bottom
|
||||
anchors.left: password_input_box.left
|
||||
@@ -442,6 +446,7 @@ Rectangle {
|
||||
hoverColor: "#5692c4"
|
||||
font.family: textFont.name
|
||||
font.pixelSize: config.actionBarFontSize
|
||||
font.bold: true
|
||||
|
||||
model: sessionModel
|
||||
index: sessionModel.lastIndex
|
||||
@@ -487,6 +492,7 @@ Rectangle {
|
||||
text: modelItem ? modelItem.modelData.shortName : "zz"
|
||||
font.family: textFont.name
|
||||
font.pixelSize: config.actionBarFontSize
|
||||
font.bold: true
|
||||
color: config.actionBarFontColor
|
||||
}
|
||||
}
|
||||
|
||||
@@ -23,4 +23,4 @@ autofocusInput=true
|
||||
errorMsgFontColor="#dc322f"
|
||||
clockFontColor="white"
|
||||
labelFontColor="white"
|
||||
actionBarFontColor="#505050"
|
||||
actionBarFontColor="#e0342c"
|
||||
Reference in New Issue
Block a user