mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-04 12:21:04 -05:00
23 lines
369 B
QML
23 lines
369 B
QML
import QtQuick 2.0
|
|
pragma Singleton
|
|
|
|
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"
|
|
}
|
|
property QtObject header: QtObject
|
|
{
|
|
property var height: 80
|
|
property var color: "#0398d5"
|
|
}
|
|
|
|
}
|