aboutsummaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml/TemplateSlimComboBox.qml
diff options
context:
space:
mode:
Diffstat (limited to 'mobile-widgets/qml/TemplateSlimComboBox.qml')
-rw-r--r--mobile-widgets/qml/TemplateSlimComboBox.qml22
1 files changed, 22 insertions, 0 deletions
diff --git a/mobile-widgets/qml/TemplateSlimComboBox.qml b/mobile-widgets/qml/TemplateSlimComboBox.qml
new file mode 100644
index 000000000..36137770a
--- /dev/null
+++ b/mobile-widgets/qml/TemplateSlimComboBox.qml
@@ -0,0 +1,22 @@
+// SPDX-License-Identifier: GPL-2.0
+import QtQuick 2.11
+import QtQuick.Controls 2.4
+import QtQuick.Layouts 1.11
+import org.kde.kirigami 2.4 as Kirigami
+
+TemplateComboBox {
+ id: cb
+ Layout.fillWidth: false
+ Layout.preferredHeight: Kirigami.Units.gridUnit * 2
+ Layout.preferredWidth: Kirigami.Units.gridUnit * 8
+ contentItem: Text {
+ text: cb.displayText
+ font.pointSize: subsurfaceTheme.regularPointSize
+ anchors.right: indicator.left
+ anchors.left: cb.left
+ color: subsurfaceTheme.textColor
+ leftPadding: Kirigami.Units.smallSpacing * 0.5
+ rightPadding: Kirigami.Units.smallSpacing * 0.5
+ verticalAlignment: Text.AlignVCenter
+ }
+}