mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-01 11:39:26 +00:00
17 lines
359 B
QML
17 lines
359 B
QML
pragma Singleton
|
|
import QtQuick 2.7
|
|
|
|
import Common 1.0
|
|
|
|
// ===================================================================
|
|
|
|
QtObject {
|
|
property color backgroundColor: Colors.q
|
|
property int iconSize: 12
|
|
property int padding: 10
|
|
|
|
property QtObject textColor: QtObject {
|
|
property color focused: Colors.l
|
|
property color normal: Colors.r
|
|
}
|
|
}
|