mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-28 17:29:19 +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
53 lines
1.2 KiB
QML
53 lines
1.2 KiB
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Units 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property QtObject entry: QtObject {
|
|
property int height: 50
|
|
property int iconSize: 36
|
|
property int rightMargin: 10
|
|
|
|
property QtObject color: QtObject {
|
|
property color hovered: Colors.o.color
|
|
property color normal: Colors.q.color
|
|
}
|
|
|
|
property QtObject indicator: QtObject {
|
|
property color color: Colors.i.color
|
|
property int width: 5
|
|
}
|
|
|
|
property QtObject separator: QtObject {
|
|
property color color: Colors.c.color
|
|
property int height: 1
|
|
}
|
|
}
|
|
|
|
property QtObject header: QtObject {
|
|
property int iconSize: 22
|
|
property int leftMargin: 20
|
|
property int rightMargin: 10
|
|
|
|
property QtObject button: QtObject {
|
|
property int height: 40
|
|
}
|
|
|
|
property QtObject color: QtObject {
|
|
property color normal: Colors.j.color
|
|
property color pressed: Colors.i.color
|
|
}
|
|
|
|
property QtObject text: QtObject {
|
|
property int pointSize: Units.dp * 9
|
|
|
|
property QtObject color: QtObject {
|
|
property color normal: Colors.q.color
|
|
property color pressed: Colors.q.color
|
|
}
|
|
}
|
|
}
|
|
}
|