RetroShare/retroshare-qml-app/src/styles/SideBarStyle.qml

23 lines
369 B
QML
Raw Normal View History

2017-06-22 11:03:47 -04:00
import QtQuick 2.0
2017-06-22 11:04:25 -04:00
pragma Singleton
2017-06-22 11:03:47 -04:00
2017-06-22 11:04:25 -04:00
QtObject {
property var width: 1.5
property QtObject item: QtObject
{
property var height: 50
property string hoverColor: "lightgrey"
property string defaultColor: "white"
property string pressColor: "slategrey"
2017-06-22 11:32:59 -04:00
}
property QtObject header: QtObject
{
property var height: 80
property var color: "#0398d5"
2017-06-22 11:04:25 -04:00
}
2017-06-22 11:03:47 -04:00
}