mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 15:08:24 +00:00
19 lines
518 B
QML
19 lines
518 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import ColorsList 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property string sectionName: 'Popup'
|
|
property color backgroundColor: ColorsList.add(sectionName+'_bg', 'k').color
|
|
|
|
property QtObject shadow: QtObject {
|
|
property color color: ColorsList.add(sectionName+'_shadow', 'l').color
|
|
property int horizontalOffset: 2
|
|
property int radius: 10
|
|
property int samples: 15
|
|
property int verticalOffset: 2
|
|
}
|
|
}
|