linphone-desktop/linphone-app/ui/modules/Linphone/Styles/Chat/ChatReplyMessageStyle.qml
Julien Wadel 4532e278ac New chat layout :
- Split content type to be filtered by proxy lists.
- Add a message in notification when receiving a conference invitation.
- Change chat bubbles colors to match mobile application.
- Change date display on messages to remove sections. It allows to be more coherent when sorting messages.
- Change Chat Layout : outgoing messages to right, incoming messages to left.
- Change bubble design to be squared when grouped.
- Group messages on 1 second away from previous (and same sender).
- Add a background color with radius to files in reply messages.
- Make color corners on reply.
- Fix filename to 2 lines in file download icon.
- Add a background color on conference invitations.
- Change conference title from bold to normal on invitations.
- Rework chat message content layout to be used with grids and lists : files are now displayed in grid.
- Remove cyclic dependencies with reply design (which was recursivly linked with ChatContent).
- Fix center layouts that were not bind to the correct one.
- Align pictures to center.
- Fix hidden admin usernames in participant view.
2023-03-03 17:09:25 +01:00

33 lines
1.1 KiB
QML

pragma Singleton
import QtQml 2.2
import Units 1.0
import ColorsList 1.0
// =============================================================================
QtObject {
property string sectionName : 'ChatReplyMessage'
property var colorModel: ColorsList.add(sectionName, 'q')
property QtObject header: QtObject{
property var colorModel: ColorsList.add(sectionName+'_header', 'h')
property int pointSizeOffset: -3
property QtObject replyIcon: QtObject{
property string icon : 'menu_reply_custom'
property int iconSize: 22
}
}
property QtObject replyArea: QtObject{
property var outgoingMarkColor: ColorsList.add(sectionName+'_reply_outgoing_mark', 'outgoing_reply_mark_bg')
property var incomingMarkColor: ColorsList.add(sectionName+'_reply_incoming_mark', 'incoming_reply_mark_bg')
property var backgroundColor: ColorsList.add(sectionName+'_reply_bg', 'q')
property var foregroundColor: ColorsList.add(sectionName+'_reply_fg', 'h')
property var fileBackgroundColor: ColorsList.add(sectionName+'_reply_file_bg', 'reply_file_bg')
property int usernamePointSizeOffset: -2
property int pointSizeOffset: -2
}
property int padding: 8
}