linphone-desktop/linphone-app/ui/modules/Common/Styles/Menus/MenuStyle.qml
Julien Wadel 1cbdc96b30 Colors/Images rework
Remove Call and notices logs from db
Delete empty chat rooms after requesting it
Option of showing/hidding empty chat rooms
Many fixes on notifications count, imdn states, synchronizations behaviors, mouse cursor, etc.
Fix crashes
Fix timeline times
2021-08-01 22:49:42 +02:00

41 lines
971 B
QML

pragma Singleton
import QtQml 2.2
// =============================================================================
QtObject {
property QtObject normal : QtObject {
property color color: Colors.q.color
property int width: 130
property bool shadowEnabled: true
property int radius : 0
property QtObject border : QtObject {
property color color: Colors.u.color
property int width: 0
}
}
property QtObject aux : QtObject {
property color color: Colors.q.color
property int width: 200
property bool shadowEnabled: false
property int radius : 5
property QtObject border : QtObject {
property color color: Colors.u.color
property int width: 1
}
}
property QtObject aux2 : QtObject {
property color color: Colors.q.color
property int width: 250
property bool shadowEnabled: false
property int radius : 0
property QtObject border : QtObject {
property color color: Colors.u.color
property int width: 0
}
}
}