linphone-desktop/tests/ui/modules/Linphone/Styles/MenuStyle.qml
2016-09-27 11:51:37 +02:00

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
}
}
}