linphone-desktop/ui/modules/Common/Styles/Misc/ForceScrollBarStyle.qml
2018-07-16 17:13:48 +02:00

22 lines
495 B
QML

pragma Singleton
import QtQml 2.2
import Colors 1.0
// =============================================================================
QtObject {
property color backgroundColor: Colors.g20
property QtObject contentItem: QtObject {
property int implicitHeight: 8
property int implicitWidth: 8
property int radius: 10
}
property QtObject color: QtObject {
property color hovered: Colors.h
property color normal: Colors.g20
property color pressed: Colors.d
}
}