Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cfc4eb26 authored by Stefan Niedermann's avatar Stefan Niedermann
Browse files

Apply spacer variables instead of using direct values

parent 2e8976f6
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -30,12 +30,12 @@
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_marginStart="@dimen/spacer_2x"
        android:layout_marginLeft="16dp"
        android:layout_marginEnd="16dp"
        android:layout_marginRight="16dp"
        android:layout_marginLeft="@dimen/spacer_2x"
        android:layout_marginEnd="@dimen/spacer_2x"
        android:layout_marginRight="@dimen/spacer_2x"
        android:layout_weight="1"
        android:background="@color/bg_highlighted"
        android:padding="8dp"
        android:padding="@dimen/spacer_1x"
        android:scrollbars="horizontal|vertical"
        android:textIsSelectable="true"
        android:typeface="monospace"
@@ -45,7 +45,7 @@
        style="?android:buttonBarStyle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="16dp"
        android:layout_margin="@dimen/spacer_2x"
        android:gravity="end"
        android:orientation="horizontal"
        android:weightSum="1.0">
+1 −1
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@
                android:layout_marginEnd="@dimen/spacer_1x"
                android:layout_marginRight="@dimen/spacer_1x"
                android:layout_marginBottom="@dimen/design_appbar_elevation"
                app:cardCornerRadius="8dp"
                app:cardCornerRadius="@dimen/spacer_1x"
                app:cardElevation="6dp"
                app:strokeWidth="0dp">

+4 −4
Original line number Diff line number Diff line
@@ -90,8 +90,8 @@
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginStart="16dp"
            android:layout_marginLeft="16dp"
            android:layout_marginStart="@dimen/spacer_2x"
            android:layout_marginLeft="@dimen/spacer_2x"
            android:ellipsize="middle"
            android:singleLine="true"
            android:text="@string/add_account"
@@ -126,8 +126,8 @@
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginStart="16dp"
            android:layout_marginLeft="16dp"
            android:layout_marginStart="@dimen/spacer_2x"
            android:layout_marginLeft="@dimen/spacer_2x"
            android:ellipsize="middle"
            android:singleLine="true"
            android:text="@string/manage_accounts"
+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@
            style="?android:attr/listSeparatorTextViewStyle"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="16dp"
            android:layout_marginTop="@dimen/spacer_2x"
            android:text="@string/about_icons_disclaimer_title" />

        <TextView
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@
            android:ems="10"
            android:gravity="top"
            android:inputType="textMultiLine|textCapSentences"
            android:padding="16dp"
            android:padding="@dimen/spacer_2x"
            android:textColor="@color/fg_default"
            android:theme="@style/textViewStyle"
            tools:text="@tools:sample/lorem/random" />
Loading