aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res/layout/keys_card.xml
diff options
context:
space:
mode:
authorChristian Schneppe <christian@pix-art.de>2018-04-01 14:45:00 +0200
committerChristian Schneppe <christian@pix-art.de>2018-04-01 14:45:00 +0200
commitab9ffbfe8a84a18274ead148aff394685afbb4cd (patch)
tree5ef526f999df13f8414a6d1d07546ab0ad16f370 /src/main/res/layout/keys_card.xml
parent29b2adf5fd6725b47a647634657aeb8a94756534 (diff)
fixed paddings in omemo key cards
Diffstat (limited to '')
-rw-r--r--src/main/res/layout/keys_card.xml17
1 files changed, 6 insertions, 11 deletions
diff --git a/src/main/res/layout/keys_card.xml b/src/main/res/layout/keys_card.xml
index 70f2c12d9..63fd7e2f3 100644
--- a/src/main/res/layout/keys_card.xml
+++ b/src/main/res/layout/keys_card.xml
@@ -15,33 +15,28 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
- android:padding="@dimen/card_padding_regular">
+ android:padding="@dimen/card_padding_list">
<TextView
android:id="@+id/foreign_keys_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:textColor="?attr/color_text_primary"
- android:textSize="?attr/TextSizeHeadline"
- android:textStyle="bold"/>
+ android:layout_margin="@dimen/list_padding"
+ android:textAppearance="@style/TextAppearance.AppCompat.Title" />
<LinearLayout
android:id="@+id/foreign_keys_details"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
- android:divider="?android:dividerHorizontal"
- android:orientation="vertical"
- android:showDividers="middle">
- </LinearLayout>
+ android:orientation="vertical"></LinearLayout>
<TextView
android:id="@+id/no_keys_to_accept"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_marginTop="8dp"
+ android:layout_margin="@dimen/list_padding"
android:text="@string/no_keys_just_confirm"
- android:textColor="?attr/color_text_primary"
- android:textSize="?attr/TextSizeBody"/>
+ android:textAppearance="@style/TextAppearance.AppCompat.Body1" />
</LinearLayout>
</android.support.v7.widget.CardView>
</layout> \ No newline at end of file