mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-28 01:09: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
37 lines
876 B
QML
37 lines
876 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property QtObject background: QtObject {
|
|
property color color: Colors.c.color
|
|
property int height: 4
|
|
property int radius: 2
|
|
property int width: 200
|
|
|
|
property QtObject content: QtObject {
|
|
property color color: Colors.m.color
|
|
property int radius: 2
|
|
}
|
|
}
|
|
|
|
property QtObject handle: QtObject {
|
|
property int height: 16
|
|
property int radius: 13
|
|
property int width: 16
|
|
|
|
property QtObject border: QtObject {
|
|
property QtObject color: QtObject {
|
|
property color normal: Colors.c.color
|
|
property color pressed: Colors.c.color
|
|
}
|
|
}
|
|
|
|
property QtObject color: QtObject {
|
|
property color normal: Colors.e.color
|
|
property color pressed: Colors.f.color
|
|
}
|
|
}
|
|
}
|