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

35 lines
769 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: 2 // Number of third parts of screen (for example 2/3)
2017-06-22 11:04:25 -04:00
property QtObject item: QtObject
{
property var height: 50
2017-06-22 11:04:25 -04:00
property string hoverColor: "lightgrey"
property string defaultColor: "white"
property string pressColor: "slategrey"
property int pixelSize: 14
2017-06-22 11:32:59 -04:00
}
property QtObject header: QtObject
{
property var color: "#0398d5"
2017-06-22 13:28:14 -04:00
property var avatarHeight: 50
property var avatarMargins: 15
property var textColor: "white"
property var textNickSize: 14
property var textGxsidSize: 11
}
property QtObject footer: QtObject
{
property var color: "white"
property var textColor: "grey"
property var margins: 8
2018-02-01 15:26:36 -05:00
property string text: "Retroshare Android alpha"
2017-06-22 11:04:25 -04:00
}
2017-06-22 11:03:47 -04:00
}