linphone-desktop/linphone-app/ui/modules/Linphone/Styles/TelKeypad/TelKeypadStyle.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

38 lines
982 B
QML

pragma Singleton
import QtQml 2.2
import Units 1.0
// =============================================================================
QtObject {
property int columnSpacing: 0
property int height: 180
property int rowSpacing: 0
property int width: 180
property color color: Colors.k.color
property color selectedColor : Colors.m.color
property int selectedBorderWidth: 2
property real radius : 5.0
property QtObject button: QtObject {
property QtObject color: QtObject {
property color normal: Colors.q.color
property color pressed: Colors.i.color
}
property QtObject line: QtObject {
property color color: Colors.l50.color
property int bottomMargin: 4
property int height: 2
property int leftMargin: 8
property int rightMargin: 8
property int topMargin: 0
}
property QtObject text: QtObject {
property color color: Colors.d.color
property int pointSize: Units.dp * 11
}
}
}