updated availability combo dialog

This commit is contained in:
David Kelly 2017-04-07 10:25:37 -07:00
parent d363bde0d4
commit ee9bc0bfa4

View file

@ -92,8 +92,7 @@ Item {
color: selectedOptionIndex === index ? '#cee6ff' : 'white'; color: selectedOptionIndex === index ? '#cee6ff' : 'white';
Rectangle { Rectangle {
id: comboOptionSelected; id: comboOptionSelected;
visible: selectedOptionIndex === index ? true : false; color: selectedOptionIndex == index ? hifi.colors.blueAccent : 'white';
color: hifi.colors.blueAccent;
anchors.left: parent.left; anchors.left: parent.left;
anchors.leftMargin: 20; anchors.leftMargin: 20;
anchors.top: parent.top; anchors.top: parent.top;
@ -102,7 +101,7 @@ Item {
height: width; height: width;
radius: width; radius: width;
border.width: 3; border.width: 3;
border.color: hifi.colors.blueHighlight; border.color: selectedOptionIndex === index ? hifi.colors.blueHighlight: hifi.colors.lightGrayText;
} }