Merge "Update the font for account setup basics" into ub-mail-algol

This commit is contained in:
Martin Hibdon 2014-04-29 17:46:36 +00:00 committed by Android (Google) Code Review
commit 03d80363fa
5 changed files with 14 additions and 2 deletions

View File

@ -63,7 +63,7 @@
android:layout_width="wrap_content"
android:layout_marginRight="16dip"
android:text="@string/account_setup_basics_email_label"
style="@style/account_setup_label_text" />
style="@style/account_setup_label_large_text" />
<EditText
android:id="@+id/account_email"
android:contentDescription="@string/account_setup_basics_email_label"

View File

@ -57,6 +57,6 @@
android:hint="@string/account_setup_basics_email_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textAppearance="?android:attr/textAppearanceMedium"
android:inputType="textEmailAddress" />
</LinearLayout>

View File

@ -21,6 +21,7 @@
<color name="account_setup_headline_color">#333333</color>
<color name="account_setup_info_text_color">#000000</color>
<color name="account_setup_label_text_color">#666666</color>
<color name="account_setup_label_large_text_color">#000000</color>
<color name="account_setup_divider_color">#CCCCCC</color>
<color name="account_setup_xlarge_background_color">#e5e5e5</color>
<color name="account_setup_manual_button_color">#373737</color>

View File

@ -66,6 +66,9 @@
<!-- Info text in any account setup screen -->
<dimen name="setup_info_text_margin_bottom">20dp</dimen>
<!-- Large label text on account setup basics -->
<dimen name="setup_label_large_text_margin_bottom">20dp</dimen>
<!-- inset distance for settings buttons -->
<dimen name="settings_buttons_padding_top">48dp</dimen>
<dimen name="settings_buttons_padding_bottom">48dp</dimen>

View File

@ -89,6 +89,14 @@
<item name="android:paddingTop">@dimen/setup_label_text_padding_top</item>
</style>
<!-- Account setup row label large text -->
<style name="account_setup_label_large_text">
<item name="android:textSize">20sp</item>
<item name="android:textColor">@color/account_setup_label_large_text_color</item>
<item name="android:fontFamily">sans-serif-thin</item>
<item name="android:layout_marginBottom">@dimen/setup_label_large_text_margin_bottom</item>
</style>
<!-- Account setup checkboxes -->
<style name="account_setup_checkbox">
<item name="android:paddingTop">@dimen/setup_checkbox_padding_top</item>