linphone-desktop/linphone-app/ui/modules/Linphone/Styles/Timeline/TimelineStyle.qml
Julien Wadel 8ecd1bc32c - Add History view to show all call logs
- Manage missing call count. Reset call notifications when: App get focus and the logs are shown, and when we click on a log
- Refactoring of MouseArea to centralize cursor shapes
- Update SDK
2020-10-07 16:32:25 +02:00

49 lines
1.2 KiB
QML

pragma Singleton
import QtQml 2.2
import Colors 1.0
import Units 1.0
// =============================================================================
QtObject {
property color color: Colors.q
property QtObject contact: QtObject {
property int height: 60
property QtObject backgroundColor: QtObject {
property color a: Colors.g10
property color b: Colors.a
property color selected: Colors.i
}
property QtObject sipAddress: QtObject {
property QtObject color: QtObject {
property color normal: Colors.n
property color selected: Colors.q
}
}
property QtObject username: QtObject {
property QtObject color: QtObject {
property color normal: Colors.j
property color selected: Colors.q
}
}
}
property QtObject legend: QtObject {
property QtObject backgroundColor: QtObject {
property color normal: Colors.f
property color hovered: Colors.c
}
property color color: Colors.d
property int pointSize: Units.dp * 11
property int height: 30
property int iconSize: 14
property int leftMargin: 17
property int rightMargin: 17
property int spacing: 8
}
}