| <?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> |
| <style name="AccountSetupDialogActivityTheme" |
| parent="@android:style/Theme.Holo.Light.Dialog.NoActionBar" /> |
| <!-- Account Setup Activity --> |
| <style name="account_setup_content"> |
| <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_lower_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> |
| </style> |
| |
| <style name="oauth_label"> |
| <item name="android:paddingLeft">10dp</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:layout_margin">@dimen/setup_nav_button_margin</item> |
| <item name="android:background">?android:attr/selectableItemBackground</item> |
| <item name="android:paddingTop">@dimen/setup_nav_button_padding_top</item> |
| <item name="android:paddingLeft">@dimen/setup_nav_button_padding_side</item> |
| <item name="android:paddingRight">@dimen/setup_nav_button_padding_side</item> |
| <item name="android:paddingBottom">@dimen/setup_nav_button_padding_bottom</item> |
| <item name="android:textAllCaps">true</item> |
| <item name="android:textAppearance">?android:attr/textAppearanceMedium</item> |
| <item name="android:textColor">@color/buttontext</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">48sp</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> |
| <item name="android:fontFamily">sans-serif-thin</item> |
| <item name="android:layout_marginBottom">@dimen/setup_info_text_margin_bottom</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> |
| <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:layout_marginTop">@dimen/setup_checkbox_margin_top</item> |
| <item name="android:layout_marginBottom">@dimen/setup_checkbox_margin_bottom</item> |
| <item name="android:layout_marginLeft">@dimen/setup_checkbox_margin_side</item> |
| <item name="android:layout_marginRight">@dimen/setup_checkbox_margin_side</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> |
| <item name="android:paddingLeft">20dp</item> |
| <item name="android:paddingRight">20dp</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_alignParentLeft">true</item> |
| <item name="android:layout_toLeftOf">@id/select_button</item> |
| </style> |
| |
| <!-- Quick response text --> |
| <style name="quick_response_text"> |
| <item name="android:textSize">20sp</item> |
| <item name="android:textColor">@color/quick_response_text_color</item> |
| </style> |
| |
| <style name="clear_authentication_button"> |
| <item name="android:layout_marginLeft">8dp</item> |
| </style> |
| </resources> |
| |
| |
| |