mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-29 17:59:21 +00:00
27 lines
750 B
QML
27 lines
750 B
QML
pragma Singleton
|
|
import QtQuick 2.7
|
|
|
|
import Linphone 1.0
|
|
|
|
QtObject {
|
|
property int spacing: 2
|
|
|
|
property QtObject entry: QtObject {
|
|
property int fontSize: 13
|
|
property int iconSize: 24
|
|
property int leftMargin: 20
|
|
property int rightMargin: 20
|
|
property int selectionIconSize: 12
|
|
property int spacing: 18
|
|
|
|
property string selectionIcon: 'right_arrow'
|
|
property string textColor: Constants.colors.k
|
|
|
|
property QtObject color: QtObject {
|
|
property string normal: Constants.colors.g
|
|
property string hovered: Constants.colors.h
|
|
property string pressed: Constants.colors.i
|
|
property string selected: Constants.colors.j
|
|
}
|
|
}
|
|
}
|