mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-31 10:59:23 +00:00
44 lines
1,000 B
QML
44 lines
1,000 B
QML
pragma Singleton
|
|
import QtQuick 2.7
|
|
|
|
import Common 1.0
|
|
|
|
// ===================================================================
|
|
|
|
QtObject {
|
|
property QtObject infoBar: QtObject {
|
|
property color color: '#F4F4F4'
|
|
property int avatarSize: 60
|
|
property int height: 80
|
|
property int leftMargin: 40
|
|
property int rightMargin: 20
|
|
property int spacing: 20
|
|
|
|
property QtObject buttons: QtObject {
|
|
property int size: 40
|
|
property int spacing: 20
|
|
}
|
|
|
|
property QtObject username: QtObject {
|
|
property color color: '#4B5964'
|
|
property int fontSize: 13
|
|
}
|
|
}
|
|
|
|
property QtObject buttons: QtObject {
|
|
property int spacing: 20
|
|
property int topMargin: 20
|
|
}
|
|
|
|
property QtObject values: QtObject {
|
|
property int bottomMargin: 20
|
|
property int leftMargin: 40
|
|
property int rightMargin: 20
|
|
property int topMargin: 20
|
|
|
|
property QtObject separator: QtObject {
|
|
property color color: '#E8E8E8'
|
|
property int height: 1
|
|
}
|
|
}
|
|
}
|