linphone-desktop/linphone-app/ui/modules/Common/Styles/Form/SliderStyle.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

37 lines
876 B
QML

pragma Singleton
import QtQml 2.2
// =============================================================================
QtObject {
property QtObject background: QtObject {
property color color: Colors.c.color
property int height: 4
property int radius: 2
property int width: 200
property QtObject content: QtObject {
property color color: Colors.m.color
property int radius: 2
}
}
property QtObject handle: QtObject {
property int height: 16
property int radius: 13
property int width: 16
property QtObject border: QtObject {
property QtObject color: QtObject {
property color normal: Colors.c.color
property color pressed: Colors.c.color
}
}
property QtObject color: QtObject {
property color normal: Colors.e.color
property color pressed: Colors.f.color
}
}
}