mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-19 04:18:08 +00:00
18 lines
400 B
QML
18 lines
400 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Colors 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property color backgroundColor: Colors.k
|
|
|
|
property QtObject shadow: QtObject {
|
|
property color color: Colors.l
|
|
property int horizontalOffset: 2
|
|
property int radius: 10
|
|
property int samples: 15
|
|
property int verticalOffset: 2
|
|
}
|
|
}
|