linphone-desktop/linphone-app/ui/views/App/Styles/Main/Assistant/UseAppSipAccountStyle.qml
Julien Wadel 92e483c855 Add debug feedback on missing colors.
Add contact URL.
Change unread message count design in chat.
Add page text about missing features when using third party SIP account.
Add Translation link for contribution in about.
Fix history view.
Add delay of 500ms on message search.
Fix unresponsive check update button in settings.
Fix wrong characters in record name.

# Conflicts:
#	linphone-app/cmake_builder/linphone_package/CMakeLists.txt
2022-03-08 15:44:16 +01:00

23 lines
640 B
QML

pragma Singleton
import QtQml 2.2
import ColorsList 1.0
import Units 1.0
// =============================================================================
QtObject {
property string sectionName: 'UseAppSipAccount'
property QtObject checkBox: QtObject {
property int width: 300
}
property QtObject warningBlock: QtObject {
property int spacing: 10
property int pointSize: Units.dp * 10
property color color: ColorsList.add(sectionName+'_description', 'g').color
property QtObject contactUrl: QtObject {
property color color: ColorsList.add(sectionName+'_url', 'i').color
property int pointSize: Units.dp * 9
}
}
}