linphone-desktop/linphone-app/ui/views/App/Styles/Main/ContactsStyle.qml
Julien Wadel 1cbdc96b30 Colors/Images rework
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
2021-08-01 22:49:42 +02:00

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