diff --git a/vector/src/main/java/im/vector/app/features/html/EventHtmlRenderer.kt b/vector/src/main/java/im/vector/app/features/html/EventHtmlRenderer.kt index 1e2c1612bf..029b6c6cf0 100644 --- a/vector/src/main/java/im/vector/app/features/html/EventHtmlRenderer.kt +++ b/vector/src/main/java/im/vector/app/features/html/EventHtmlRenderer.kt @@ -173,6 +173,8 @@ class EventHtmlRenderer @Inject constructor( builder.codeBlockBackgroundColor(codeBlockBackground) .codeBackgroundColor(codeBlockBackground) .blockQuoteColor(quoteBarColor) + .blockQuoteWidth(dimensionConverter.dpToPx(2)) + .blockMargin(dimensionConverter.dpToPx(8)) } }, object: AbstractMarkwonPlugin() { // Remove fallback mx-replies diff --git a/vector/src/main/res/layout/view_in_reply_to.xml b/vector/src/main/res/layout/view_in_reply_to.xml index 3aa5de1f20..6978818649 100644 --- a/vector/src/main/res/layout/view_in_reply_to.xml +++ b/vector/src/main/res/layout/view_in_reply_to.xml @@ -12,7 +12,8 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" - android:layout_marginStart="8dp" + android:paddingStart="8dp" + android:paddingEnd="0dp" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent"> @@ -54,6 +55,7 @@ android:layout_width="2dp" android:layout_height="0dp" android:background="?vctr_content_secondary" + android:layout_marginHorizontal="1dp" app:layout_constraintStart_toStartOf="parent" app:layout_constraintBottom_toBottomOf="@id/inReplyToHolder" app:layout_constraintTop_toTopOf="@id/inReplyToHolder" />