mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-23 22:58:15 +00:00
22 lines
460 B
QML
22 lines
460 B
QML
pragma Singleton
|
|
import QtQuick 2.7
|
|
|
|
import Common 1.0
|
|
|
|
// ===================================================================
|
|
|
|
QtObject {
|
|
property QtObject fileChooserButton: QtObject {
|
|
property int margins: 6
|
|
property int width: 40
|
|
}
|
|
|
|
property QtObject hoverContent: QtObject {
|
|
property color backgroundColor: Colors.k
|
|
|
|
property QtObject text: QtObject {
|
|
property color color: Colors.i
|
|
property int fontSize: 11
|
|
}
|
|
}
|
|
}
|