linphone-desktop/linphone-app/ui/views/App/Styles/Main/HistoryViewStyle.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

49 lines
1.2 KiB
QML

pragma Singleton
import QtQml 2.2
// =============================================================================
QtObject {
property QtObject bar: QtObject {
property color backgroundColor: Colors.e.color
property int avatarSize: 60
property int height: 80
property int leftMargin: 40
property int rightMargin: 30
property int spacing: 20
property QtObject actions: QtObject {
property int spacing: 40
property QtObject call: QtObject {
property int iconSize: 40
}
property QtObject del: QtObject {
property int iconSize: 22
}
property QtObject edit: QtObject {
property int iconSize: 22
}
}
property QtObject description: QtObject {
property color sipAddressColor: Colors.g.color
property color usernameColor: Colors.j.color
}
}
property QtObject filters: QtObject {
property color backgroundColor: Colors.q.color
property int height: 51
property int leftMargin: 40
property QtObject border: QtObject {
property color color: Colors.g10.color
property int bottomWidth: 1
property int topWidth: 0
}
}
}