mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 15:08:24 +00:00
- Hide gears in accounts manager - Round the dialpad - set focus and show it on dialpad when mouse is hovering it
39 lines
964 B
QML
39 lines
964 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Colors 1.0
|
|
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
|
|
property color selectedColor : Colors.m
|
|
property int selectedBorderWidth: 2
|
|
property real radius : 5.0
|
|
|
|
property QtObject button: QtObject {
|
|
property QtObject color: QtObject {
|
|
property color normal: Colors.q
|
|
property color pressed: Colors.i
|
|
}
|
|
|
|
property QtObject line: QtObject {
|
|
property color color: Colors.l50
|
|
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
|
|
property int pointSize: Units.dp * 11
|
|
}
|
|
}
|
|
}
|