aboutsummaryrefslogtreecommitdiff
path: root/components/StandardDropdown.qml
diff options
context:
space:
mode:
authorSander Ferdinand <sa.ferdinand@gmail.com>2018-04-30 00:52:48 +0200
committerSander Ferdinand <sa.ferdinand@gmail.com>2018-04-30 00:52:48 +0200
commit7418a10d28629658713d3dc162d37ba232bc992d (patch)
tree727b8d6e2dcf52b1065d58cc397ff3876d76ba83 /components/StandardDropdown.qml
parentfe53cddd034dd1f1a8fdca86ba1960991be2f5a8 (diff)
downloadmonzero-gui-7418a10d28629658713d3dc162d37ba232bc992d.tar.gz
monzero-gui-7418a10d28629658713d3dc162d37ba232bc992d.tar.xz
monzero-gui-7418a10d28629658713d3dc162d37ba232bc992d.zip
Improve contrast - brighten up borders
Diffstat (limited to 'components/StandardDropdown.qml')
-rw-r--r--components/StandardDropdown.qml3
1 files changed, 2 insertions, 1 deletions
diff --git a/components/StandardDropdown.qml b/components/StandardDropdown.qml
index fce7cc45..7ff021ed 100644
--- a/components/StandardDropdown.qml
+++ b/components/StandardDropdown.qml
@@ -43,6 +43,7 @@ Item {
property int dropdownHeight: 42
property int fontHeaderSize: 16 * scaleRatio
property int fontItemSize: 14 * scaleRatio
+ property string colorBorder: MoneroComponents.Style.inputBorderColorInActive
property string colorHeaderBackground: "transparent"
property bool headerBorder: true
property bool headerFontBold: false
@@ -80,7 +81,7 @@ Item {
Rectangle {
color: dropdown.colorHeaderBackground
border.width: dropdown.headerBorder ? 1 : 0
- border.color: Qt.rgba(1, 1, 1, 0.25)
+ border.color: dropdown.colorBorder
radius: 4
anchors.fill: parent
}