mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 15:08:24 +00:00
Add file icon with extension in chats. Change file message design to show empty icon with extension and download link. Update SDK.
15 lines
548 B
QML
15 lines
548 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Units 1.0
|
|
import ColorsList 1.0
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property string sectionName: 'MessageBanner'
|
|
|
|
property string copyTextIcon : 'menu_copy_text_custom'
|
|
property color color: ColorsList.add(sectionName+'_message_banner', '', 'Background of message banner', '#9ecd1d').color
|
|
property color textColor: ColorsList.add(sectionName+'_message_banner_text', 'q', 'Text of message banner').color
|
|
property int pointSize: Units.dp * 9
|
|
}
|