summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mobile-widgets/qml/TemplateComboBox.qml5
1 files changed, 2 insertions, 3 deletions
diff --git a/mobile-widgets/qml/TemplateComboBox.qml b/mobile-widgets/qml/TemplateComboBox.qml
index 1546f7a3e..bd2a81d63 100644
--- a/mobile-widgets/qml/TemplateComboBox.qml
+++ b/mobile-widgets/qml/TemplateComboBox.qml
@@ -60,11 +60,10 @@ ComboBox {
}
background: Rectangle {
- border.color: subsurfaceTheme.darkerPrimaryColor
+ border.color: cb.focus ? subsurfaceTheme.darkerPrimaryColor : subsurfaceTheme.backgroundColor
border.width: cb.visualFocus ? 2 : 1
- color: subsurfaceTheme.backgroundColor
+ color: Qt.darker(subsurfaceTheme.backgroundColor, 1.1)
radius: 2
- visible: cb.focus
}
popup: Popup {