Improve contrast - brighten up borders

This commit is contained in:
Sander Ferdinand
2018-04-30 00:52:48 +02:00
parent fe53cddd03
commit 7418a10d28
11 changed files with 25 additions and 15 deletions

View File

@@ -57,7 +57,12 @@ RowLayout {
radius: 3
y: 0
color: "transparent"
border.color: checkBox.checked ? Qt.rgba(1, 1, 1, 0.35) : Qt.rgba(1, 1, 1, 0.25)
border.color:
if(checkBox.checked){
return MoneroComponents.Style.inputBorderColorActive;
} else {
return MoneroComponents.Style.inputBorderColorInActive;
}
}
Rectangle {