mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 11:17:34 +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 {
|
Item {
|
||||||
id: dropIcon
|
id: dropIcon
|
||||||
anchors { right: parent.right; verticalCenter: parent.verticalCenter }
|
anchors { right: parent.right; verticalCenter: parent.verticalCenter }
|
||||||
width: 20
|
height: background.height
|
||||||
height: textField.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 {
|
HiFiGlyphs {
|
||||||
anchors.centerIn: parent
|
anchors {
|
||||||
|
top: parent.top
|
||||||
|
topMargin: -8
|
||||||
|
horizontalCenter: parent.horizontalCenter
|
||||||
|
}
|
||||||
size: hifi.dimensions.spinnerSize
|
size: hifi.dimensions.spinnerSize
|
||||||
text: hifi.glyphs.caratDn
|
text: hifi.glyphs.caratDn
|
||||||
color: controlHover.containsMouse || popup.visible ? hifi.colors.baseGray : (isLightColorScheme ? hifi.colors.lightGray : hifi.colors.lightGrayText)
|
color: controlHover.containsMouse || popup.visible ? hifi.colors.baseGray : (isLightColorScheme ? hifi.colors.lightGray : hifi.colors.lightGrayText)
|
||||||
|
|
Loading…
Reference in a new issue