replicant-packages_apps_Email/res/values/styles.xml
Tony Mantler e27e24e9f2 Remove hairline in account setup flow
b/13675117

Change-Id: I499929c4b4dd05c26aa24e5bd4c29fd89c6da963
2014-03-27 13:21:55 -07:00

94 lines
4.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2009 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources>
<!-- Account Setup Activity -->
<style name="account_setup_activity">
<item name="android:background">@drawable/account_setup_background</item>
</style>
<!-- The large headline at the top of every account setup screen -->
<style name="account_setup_headline">
<item name="android:fontFamily">sans-serif-thin</item>
<item name="android:textSize">@dimen/setup_headline_text_size</item>
<item name="android:textColor">@color/account_setup_headline_color</item>
<item name="android:paddingTop">@dimen/setup_headline_padding_top</item>
<item name="android:paddingLeft">@dimen/setup_headline_padding_side</item>
<item name="android:paddingRight">@dimen/setup_headline_padding_side</item>
</style>
<style name="account_setup_fragment_container">
<item name="android:paddingTop">@dimen/setup_fragment_padding_top</item>
<item name="android:paddingLeft">@dimen/setup_fragment_padding_side</item>
<item name="android:paddingRight">@dimen/setup_fragment_padding_side</item>
<item name="android:paddingBottom">@dimen/setup_fragment_padding_bottom</item>
</style>
<!-- Wizard buttons on the account setup screens -->
<style name="account_setup_text_button">
<item name="android:layout_width">@dimen/setup_text_button_width</item>
<item name="android:layout_height">@dimen/setup_text_button_height</item>
<item name="android:textColor">?android:attr/textColorPrimary</item>
<item name="android:textSize">@dimen/setup_text_button_text_size</item>
</style>
<!-- Navigation buttons on the account setup screens -->
<style name="account_setup_nav_button">
<item name="android:background">@android:color/transparent</item>
</style>
<!-- Cancel/Done buttons on the account settings (server settings) fragments -->
<style name="account_settings_button">
<item name="android:layout_width">@dimen/setup_text_button_width</item>
<item name="android:layout_height">40sp</item>
<item name="android:textColor">?android:attr/textColorPrimary</item>
<item name="android:textSize">@dimen/setup_text_button_text_size</item>
</style>
<!-- Info text in any account setup screen -->
<style name="account_setup_info_text">
<item name="android:textSize">20sp</item>
<item name="android:textColor">@color/account_setup_info_text_color</item>
</style>
<!-- Account setup row label text -->
<style name="account_setup_label_text">
<item name="android:textColor">?android:attr/textColorPrimary</item>
<item name="android:textAppearance">?android:attr/textAppearanceSmall</item>
</style>
<!-- Client certificate UI. See also values in styles-ldrtl.xml -->
<!-- Client certificate 'select' button, see also styles-ldrtl.xml -->
<style name="client_certificate_button"
parent="account_setup_text_button">
<item name="android:layout_alignParentRight">true</item>
</style>
<!-- Client certificate title, see also styles-ldrtl.xml -->
<style name="client_certificate_title">
<item name="android:layout_alignParentLeft">true</item>
<item name="android:layout_toLeftOf">@id/select_button</item>
</style>
<!-- Client certificate alias, see also styles-ldrtl.xml -->
<style name="client_certificate_alias">
<item name="android:layout_marginLeft">@dimen/setup_item_inset_start</item>
<item name="android:layout_alignParentLeft">true</item>
<item name="android:layout_toLeftOf">@id/select_button</item>
</style>
</resources>