mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-19 07:48:30 +00:00
Remove Call and notices logs from db Delete empty chat rooms after requesting it Option of showing/hidding empty chat rooms Many fixes on notifications count, imdn states, synchronizations behaviors, mouse cursor, etc. Fix crashes Fix timeline times
55 lines
1.4 KiB
QML
55 lines
1.4 KiB
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Units 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property color backgroundColor: Colors.k.color
|
|
property int spacing: 20
|
|
|
|
property QtObject bar: QtObject {
|
|
property color backgroundColor: Colors.e.color
|
|
property int height: 60
|
|
property int leftMargin: 18
|
|
property int rightMargin: 18
|
|
}
|
|
|
|
property QtObject contact: QtObject {
|
|
property int actionButtonsSize: 36
|
|
property int avatarSize: 30
|
|
property int deleteButtonSize: 22
|
|
property int height: 50
|
|
property int leftMargin: 40
|
|
property int presenceLevelSize: 12
|
|
property int rightMargin: 25
|
|
property int spacing: 15
|
|
|
|
property QtObject backgroundColor: QtObject {
|
|
property color normal: Colors.k.color
|
|
property color hovered: Colors.g10.color
|
|
}
|
|
|
|
property QtObject border: QtObject {
|
|
property color color: Colors.f.color
|
|
property int width: 1
|
|
}
|
|
|
|
property QtObject indicator: QtObject {
|
|
property color color: Colors.i.color
|
|
property int width: 5
|
|
}
|
|
|
|
property QtObject presence: QtObject {
|
|
property int pointSize: Units.dp * 10
|
|
property color color: Colors.n.color
|
|
}
|
|
|
|
property QtObject username: QtObject {
|
|
property color color: Colors.j.color
|
|
property int pointSize: Units.dp * 10
|
|
property int width: 220
|
|
}
|
|
}
|
|
}
|