diff --git a/Vector/Views/RoomBubbleList/RoomIncomingAttachmentBubbleCell.m b/Vector/Views/RoomBubbleList/RoomIncomingAttachmentBubbleCell.m index 2a3036648..d2a212ff7 100644 --- a/Vector/Views/RoomBubbleList/RoomIncomingAttachmentBubbleCell.m +++ b/Vector/Views/RoomBubbleList/RoomIncomingAttachmentBubbleCell.m @@ -25,6 +25,7 @@ [super awakeFromNib]; self.userNameLabel.textColor = kVectorTextColorBlack; + self.messageTextView.tintColor = kVectorColorGreen; } @end diff --git a/Vector/Views/RoomBubbleList/RoomIncomingAttachmentWithPaginationTitleBubbleCell.m b/Vector/Views/RoomBubbleList/RoomIncomingAttachmentWithPaginationTitleBubbleCell.m index 13e0d4a95..cafed39d6 100644 --- a/Vector/Views/RoomBubbleList/RoomIncomingAttachmentWithPaginationTitleBubbleCell.m +++ b/Vector/Views/RoomBubbleList/RoomIncomingAttachmentWithPaginationTitleBubbleCell.m @@ -28,6 +28,7 @@ self.paginationLabel.textColor = kVectorColorGreen; self.paginationSeparatorView.backgroundColor = kVectorColorGreen; + self.messageTextView.tintColor = kVectorColorGreen; } - (void)render:(MXKCellData *)cellData diff --git a/Vector/Views/RoomBubbleList/RoomIncomingAttachmentWithoutSenderInfoBubbleCell.m b/Vector/Views/RoomBubbleList/RoomIncomingAttachmentWithoutSenderInfoBubbleCell.m index 74a2a9f42..39dca85fb 100644 --- a/Vector/Views/RoomBubbleList/RoomIncomingAttachmentWithoutSenderInfoBubbleCell.m +++ b/Vector/Views/RoomBubbleList/RoomIncomingAttachmentWithoutSenderInfoBubbleCell.m @@ -16,6 +16,15 @@ #import "RoomIncomingAttachmentWithoutSenderInfoBubbleCell.h" +#import "VectorDesignValues.h" + @implementation RoomIncomingAttachmentWithoutSenderInfoBubbleCell +- (void)awakeFromNib +{ + [super awakeFromNib]; + + self.messageTextView.tintColor = kVectorColorGreen; +} + @end diff --git a/Vector/Views/RoomBubbleList/RoomIncomingTextMsgBubbleCell.m b/Vector/Views/RoomBubbleList/RoomIncomingTextMsgBubbleCell.m index 994faffd7..a39659725 100644 --- a/Vector/Views/RoomBubbleList/RoomIncomingTextMsgBubbleCell.m +++ b/Vector/Views/RoomBubbleList/RoomIncomingTextMsgBubbleCell.m @@ -25,6 +25,7 @@ [super awakeFromNib]; self.userNameLabel.textColor = kVectorTextColorBlack; + self.messageTextView.tintColor = kVectorColorGreen; } @end diff --git a/Vector/Views/RoomBubbleList/RoomIncomingTextMsgWithPaginationTitleBubbleCell.m b/Vector/Views/RoomBubbleList/RoomIncomingTextMsgWithPaginationTitleBubbleCell.m index 68e4f99b2..04d9bb467 100644 --- a/Vector/Views/RoomBubbleList/RoomIncomingTextMsgWithPaginationTitleBubbleCell.m +++ b/Vector/Views/RoomBubbleList/RoomIncomingTextMsgWithPaginationTitleBubbleCell.m @@ -28,6 +28,7 @@ self.paginationLabel.textColor = kVectorColorGreen; self.paginationSeparatorView.backgroundColor = kVectorColorGreen; + self.messageTextView.tintColor = kVectorColorGreen; } - (void)render:(MXKCellData *)cellData diff --git a/Vector/Views/RoomBubbleList/RoomIncomingTextMsgWithPaginationTitleWithoutSenderNameBubbleCell.m b/Vector/Views/RoomBubbleList/RoomIncomingTextMsgWithPaginationTitleWithoutSenderNameBubbleCell.m index ab705ba33..2ca5c6179 100644 --- a/Vector/Views/RoomBubbleList/RoomIncomingTextMsgWithPaginationTitleWithoutSenderNameBubbleCell.m +++ b/Vector/Views/RoomBubbleList/RoomIncomingTextMsgWithPaginationTitleWithoutSenderNameBubbleCell.m @@ -20,4 +20,11 @@ @implementation RoomIncomingTextMsgWithPaginationTitleWithoutSenderNameBubbleCell +- (void)awakeFromNib +{ + [super awakeFromNib]; + + self.messageTextView.tintColor = kVectorColorGreen; +} + @end diff --git a/Vector/Views/RoomBubbleList/RoomIncomingTextMsgWithoutSenderInfoBubbleCell.m b/Vector/Views/RoomBubbleList/RoomIncomingTextMsgWithoutSenderInfoBubbleCell.m index fe5699f50..d945db2bb 100644 --- a/Vector/Views/RoomBubbleList/RoomIncomingTextMsgWithoutSenderInfoBubbleCell.m +++ b/Vector/Views/RoomBubbleList/RoomIncomingTextMsgWithoutSenderInfoBubbleCell.m @@ -16,6 +16,15 @@ #import "RoomIncomingTextMsgWithoutSenderInfoBubbleCell.h" +#import "VectorDesignValues.h" + @implementation RoomIncomingTextMsgWithoutSenderInfoBubbleCell +- (void)awakeFromNib +{ + [super awakeFromNib]; + + self.messageTextView.tintColor = kVectorColorGreen; +} + @end diff --git a/Vector/Views/RoomBubbleList/RoomIncomingTextMsgWithoutSenderNameBubbleCell.m b/Vector/Views/RoomBubbleList/RoomIncomingTextMsgWithoutSenderNameBubbleCell.m index f03bd9e36..0334718be 100644 --- a/Vector/Views/RoomBubbleList/RoomIncomingTextMsgWithoutSenderNameBubbleCell.m +++ b/Vector/Views/RoomBubbleList/RoomIncomingTextMsgWithoutSenderNameBubbleCell.m @@ -20,4 +20,11 @@ @implementation RoomIncomingTextMsgWithoutSenderNameBubbleCell +- (void)awakeFromNib +{ + [super awakeFromNib]; + + self.messageTextView.tintColor = kVectorColorGreen; +} + @end diff --git a/Vector/Views/RoomBubbleList/RoomOutgoingAttachmentBubbleCell.m b/Vector/Views/RoomBubbleList/RoomOutgoingAttachmentBubbleCell.m index 72bc203f6..34b26bfcc 100644 --- a/Vector/Views/RoomBubbleList/RoomOutgoingAttachmentBubbleCell.m +++ b/Vector/Views/RoomBubbleList/RoomOutgoingAttachmentBubbleCell.m @@ -26,6 +26,7 @@ self.readReceiptsAlignment = ReadReceiptAlignmentRight; self.userNameLabel.textColor = kVectorTextColorBlack; + self.messageTextView.tintColor = kVectorColorGreen; } - (void)render:(MXKCellData *)cellData diff --git a/Vector/Views/RoomBubbleList/RoomOutgoingAttachmentWithPaginationTitleBubbleCell.m b/Vector/Views/RoomBubbleList/RoomOutgoingAttachmentWithPaginationTitleBubbleCell.m index 497bf8e81..e4e2fc732 100644 --- a/Vector/Views/RoomBubbleList/RoomOutgoingAttachmentWithPaginationTitleBubbleCell.m +++ b/Vector/Views/RoomBubbleList/RoomOutgoingAttachmentWithPaginationTitleBubbleCell.m @@ -29,6 +29,7 @@ self.paginationLabel.textColor = kVectorColorGreen; self.paginationSeparatorView.backgroundColor = kVectorColorGreen; + self.messageTextView.tintColor = kVectorColorGreen; } - (void)render:(MXKCellData *)cellData diff --git a/Vector/Views/RoomBubbleList/RoomOutgoingAttachmentWithoutSenderInfoBubbleCell.m b/Vector/Views/RoomBubbleList/RoomOutgoingAttachmentWithoutSenderInfoBubbleCell.m index 822ea1899..f1dc4cf62 100644 --- a/Vector/Views/RoomBubbleList/RoomOutgoingAttachmentWithoutSenderInfoBubbleCell.m +++ b/Vector/Views/RoomBubbleList/RoomOutgoingAttachmentWithoutSenderInfoBubbleCell.m @@ -16,12 +16,16 @@ #import "RoomOutgoingAttachmentWithoutSenderInfoBubbleCell.h" +#import "VectorDesignValues.h" + @implementation RoomOutgoingAttachmentWithoutSenderInfoBubbleCell - (void)awakeFromNib { [super awakeFromNib]; + self.readReceiptsAlignment = ReadReceiptAlignmentRight; + self.messageTextView.tintColor = kVectorColorGreen; } - (void)render:(MXKCellData *)cellData diff --git a/Vector/Views/RoomBubbleList/RoomOutgoingTextMsgBubbleCell.m b/Vector/Views/RoomBubbleList/RoomOutgoingTextMsgBubbleCell.m index c4e2da866..7ac39f9c5 100644 --- a/Vector/Views/RoomBubbleList/RoomOutgoingTextMsgBubbleCell.m +++ b/Vector/Views/RoomBubbleList/RoomOutgoingTextMsgBubbleCell.m @@ -26,6 +26,7 @@ self.readReceiptsAlignment = ReadReceiptAlignmentRight; self.userNameLabel.textColor = kVectorTextColorBlack; + self.messageTextView.tintColor = kVectorColorGreen; } @end \ No newline at end of file diff --git a/Vector/Views/RoomBubbleList/RoomOutgoingTextMsgWithPaginationTitleBubbleCell.m b/Vector/Views/RoomBubbleList/RoomOutgoingTextMsgWithPaginationTitleBubbleCell.m index bd6cb1554..8a150b981 100644 --- a/Vector/Views/RoomBubbleList/RoomOutgoingTextMsgWithPaginationTitleBubbleCell.m +++ b/Vector/Views/RoomBubbleList/RoomOutgoingTextMsgWithPaginationTitleBubbleCell.m @@ -29,6 +29,7 @@ self.paginationLabel.textColor = kVectorColorGreen; self.paginationSeparatorView.backgroundColor = kVectorColorGreen; + self.messageTextView.tintColor = kVectorColorGreen; } - (void)render:(MXKCellData *)cellData diff --git a/Vector/Views/RoomBubbleList/RoomOutgoingTextMsgWithPaginationTitleWithoutSenderNameBubbleCell.m b/Vector/Views/RoomBubbleList/RoomOutgoingTextMsgWithPaginationTitleWithoutSenderNameBubbleCell.m index dfef6fb1c..aecd197a5 100644 --- a/Vector/Views/RoomBubbleList/RoomOutgoingTextMsgWithPaginationTitleWithoutSenderNameBubbleCell.m +++ b/Vector/Views/RoomBubbleList/RoomOutgoingTextMsgWithPaginationTitleWithoutSenderNameBubbleCell.m @@ -20,4 +20,11 @@ @implementation RoomOutgoingTextMsgWithPaginationTitleWithoutSenderNameBubbleCell +- (void)awakeFromNib +{ + [super awakeFromNib]; + + self.messageTextView.tintColor = kVectorColorGreen; +} + @end \ No newline at end of file diff --git a/Vector/Views/RoomBubbleList/RoomOutgoingTextMsgWithoutSenderInfoBubbleCell.m b/Vector/Views/RoomBubbleList/RoomOutgoingTextMsgWithoutSenderInfoBubbleCell.m index cedb7a761..e84204083 100644 --- a/Vector/Views/RoomBubbleList/RoomOutgoingTextMsgWithoutSenderInfoBubbleCell.m +++ b/Vector/Views/RoomBubbleList/RoomOutgoingTextMsgWithoutSenderInfoBubbleCell.m @@ -16,12 +16,16 @@ #import "RoomOutgoingTextMsgWithoutSenderInfoBubbleCell.h" +#import "VectorDesignValues.h" + @implementation RoomOutgoingTextMsgWithoutSenderInfoBubbleCell - (void)awakeFromNib { [super awakeFromNib]; + self.readReceiptsAlignment = ReadReceiptAlignmentRight; + self.messageTextView.tintColor = kVectorColorGreen; } @end \ No newline at end of file diff --git a/Vector/Views/RoomBubbleList/RoomOutgoingTextMsgWithoutSenderNameBubbleCell.m b/Vector/Views/RoomBubbleList/RoomOutgoingTextMsgWithoutSenderNameBubbleCell.m index e54ffad82..4c4fdd3a6 100644 --- a/Vector/Views/RoomBubbleList/RoomOutgoingTextMsgWithoutSenderNameBubbleCell.m +++ b/Vector/Views/RoomBubbleList/RoomOutgoingTextMsgWithoutSenderNameBubbleCell.m @@ -20,4 +20,11 @@ @implementation RoomOutgoingTextMsgWithoutSenderNameBubbleCell +- (void)awakeFromNib +{ + [super awakeFromNib]; + + self.messageTextView.tintColor = kVectorColorGreen; +} + @end \ No newline at end of file