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

45 lines
1 KiB
QML

pragma Singleton
import QtQml 2.2
import Units 1.0
// =============================================================================
QtObject {
property int leftMargin: 10
property QtObject attribute: QtObject {
property int height: 40
property QtObject background: QtObject {
property QtObject color: QtObject {
property color normal: Colors.a.color
property color hovered: Colors.o.color
}
}
property QtObject dropArea: QtObject {
property int margins: 5
}
property QtObject text: QtObject {
property color color: Colors.j.color
property int pointSize: Units.dp * 10
}
}
property QtObject column: QtObject {
property int bitrateWidth: 120
property int clockRateWidth: 100
property int encoderDescriptionWidth: 280
property int mimeWidth: 100
property int recvFmtpWidth: 200
property int spacing: 10
}
property QtObject legend: QtObject {
property color color: Colors.j.color
property int pointSize: Units.dp * 10
property int height: 50
}
}