aboutsummaryrefslogtreecommitdiff
path: root/components/LineEditMulti.qml
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2018-05-07 15:50:45 -0500
committerluigi1111 <luigi1111w@gmail.com>2018-05-07 15:50:45 -0500
commitff3987ccab3626f8a8354fee8b3557567e73594e (patch)
tree7f121d620d785a920bfebcfb7caaeb8ea443003c /components/LineEditMulti.qml
parent6de8e70004768edd27e7f1a3733545b69b1fe2b8 (diff)
parent26aabd2226604a599f53b4fd443a7fdb1bbfc03d (diff)
downloadmonzero-gui-ff3987ccab3626f8a8354fee8b3557567e73594e.tar.gz
monzero-gui-ff3987ccab3626f8a8354fee8b3557567e73594e.tar.xz
monzero-gui-ff3987ccab3626f8a8354fee8b3557567e73594e.zip
Merge pull request #1362
fe53cdd Brighter backgrounds 7418a10 Improve contrast - brighten up borders 48b9aa4 Brigther left panel 26aabd2 Bottom left panel needs to have a transparent background
Diffstat (limited to 'components/LineEditMulti.qml')
-rw-r--r--components/LineEditMulti.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/components/LineEditMulti.qml b/components/LineEditMulti.qml
index 3468c9d5..8243a7ee 100644
--- a/components/LineEditMulti.qml
+++ b/components/LineEditMulti.qml
@@ -112,7 +112,7 @@ ColumnLayout {
anchors.verticalCenter: parent.verticalCenter
anchors.left: parent.left
anchors.leftMargin: 10 * scaleRatio
- opacity: 0.25
+ opacity: 0.35
color: MoneroComponents.Style.defaultFontColor
font.family: MoneroComponents.Style.fontRegular.name
font.pixelSize: 18 * scaleRatio
@@ -125,11 +125,11 @@ ColumnLayout {
border.width: 1
border.color: {
if(multiLine.error && multiLine.text !== ""){
- return Qt.rgba(255, 0, 0, 0.45);
+ return MoneroComponents.Style.inputBorderColorInvalid;
} else if(multiLine.activeFocus){
- return Qt.rgba(255, 255, 255, 0.35);
+ return MoneroComponents.Style.inputBorderColorActive;
} else {
- return Qt.rgba(255, 255, 255, 0.25);
+ return MoneroComponents.Style.inputBorderColorInActive;
}
}
radius: 4