linphone-desktop/ui/modules/Linphone/Styles/Notifications/NotificationReceivedFileMessageStyle.qml
2017-06-14 18:05:18 +02:00

28 lines
642 B
QML

pragma Singleton
import QtQuick 2.7
import Common 1.0
import Units 1.0
// =============================================================================
QtObject {
property color color: Colors.k
property int height: 55
property int iconSize: 40
property int leftMargin: 25
property int rightMargin: 15
property int spacing: 10
property int width: 300
property QtObject fileName: QtObject {
property color color: Colors.h
property int pointSize: Units.dp * 10
}
property QtObject fileSize: QtObject {
property color color: Colors.h
property int pointSize: Units.dp * 9
property int width: 100
}
}