mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-23 06:38:07 +00:00
16 lines
331 B
QML
16 lines
331 B
QML
pragma Singleton
|
|
import QtQuick 2.7
|
|
|
|
import Common 1.0
|
|
|
|
// ===================================================================
|
|
|
|
QtObject {
|
|
property color backgroundColor: Colors.q
|
|
property int padding: 10
|
|
|
|
property QtObject textColor: QtObject {
|
|
property color focused: Colors.l
|
|
property color normal: Colors.r
|
|
}
|
|
}
|