mirror of
https://github.com/overte-org/overte.git
synced 2025-04-22 09:33:36 +02:00
Tweak look of combo box control
This commit is contained in:
parent
c83ed578db
commit
81f13afb4e
1 changed files with 14 additions and 3 deletions
|
@ -79,10 +79,21 @@ FocusScope {
|
|||
Item {
|
||||
id: dropIcon
|
||||
anchors { right: parent.right; verticalCenter: parent.verticalCenter }
|
||||
width: 20
|
||||
height: textField.height
|
||||
height: background.height
|
||||
width: height
|
||||
Rectangle {
|
||||
width: 1
|
||||
height: parent.height
|
||||
anchors.top: parent.top
|
||||
anchors.left: parent.left
|
||||
color: isLightColorScheme ? hifi.colors.faintGray : hifi.colors.baseGray
|
||||
}
|
||||
HiFiGlyphs {
|
||||
anchors.centerIn: parent
|
||||
anchors {
|
||||
top: parent.top
|
||||
topMargin: -8
|
||||
horizontalCenter: parent.horizontalCenter
|
||||
}
|
||||
size: hifi.dimensions.spinnerSize
|
||||
text: hifi.glyphs.caratDn
|
||||
color: controlHover.containsMouse || popup.visible ? hifi.colors.baseGray : (isLightColorScheme ? hifi.colors.lightGray : hifi.colors.lightGrayText)
|
||||
|
|
Loading…
Reference in a new issue