linphone-desktop/ui/modules/Common/Styles/Misc/ForceScrollBarStyle.qml
2017-06-14 18:05:18 +02:00

22 lines
497 B
QML

pragma Singleton
import QtQuick 2.7
import Common 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.b
}
}