mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 09:44:21 +02:00
updated availability combo dialog
This commit is contained in:
parent
d363bde0d4
commit
ee9bc0bfa4
1 changed files with 2 additions and 3 deletions
|
@ -92,8 +92,7 @@ Item {
|
|||
color: selectedOptionIndex === index ? '#cee6ff' : 'white';
|
||||
Rectangle {
|
||||
id: comboOptionSelected;
|
||||
visible: selectedOptionIndex === index ? true : false;
|
||||
color: hifi.colors.blueAccent;
|
||||
color: selectedOptionIndex == index ? hifi.colors.blueAccent : 'white';
|
||||
anchors.left: parent.left;
|
||||
anchors.leftMargin: 20;
|
||||
anchors.top: parent.top;
|
||||
|
@ -102,7 +101,7 @@ Item {
|
|||
height: width;
|
||||
radius: width;
|
||||
border.width: 3;
|
||||
border.color: hifi.colors.blueHighlight;
|
||||
border.color: selectedOptionIndex === index ? hifi.colors.blueHighlight: hifi.colors.lightGrayText;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue